summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--sord/sordmm.hpp7
-rw-r--r--wscript2
3 files changed, 9 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 26adb58..44d4dc6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+sord (0.12.1) unstable;
+
+ * sordmm.hpp: Remove unused members
+
+ -- David Robillard <d@drobilla.net> Tue, 20 Aug 2013 09:55:01 -0400
+
sord (0.12.0) stable;
* Update to waf 1.7.9 and autowaf r90 (install docs to versioned directory)
diff --git a/sord/sordmm.hpp b/sord/sordmm.hpp
index b98afc7..85143f7 100644
--- a/sord/sordmm.hpp
+++ b/sord/sordmm.hpp
@@ -473,10 +473,8 @@ public:
inline World& world() const { return _world; }
private:
- World& _world;
- Node _base;
- SerdWriter* _writer;
- size_t _next_blank_id;
+ World& _world;
+ Node _base;
};
/** Create an empty in-memory RDF model.
@@ -488,7 +486,6 @@ Model::Model(World& world,
bool graphs)
: _world(world)
, _base(world, Node::URI, base_uri)
- , _writer(NULL)
{
_c_obj = sord_new(_world.world(), indices, graphs);
}
diff --git a/wscript b/wscript
index 1a9b633..3195cf2 100644
--- a/wscript
+++ b/wscript
@@ -10,7 +10,7 @@ import waflib.extras.autowaf as autowaf
# major increment <=> incompatible changes
# minor increment <=> compatible changes (additions)
# micro increment <=> no interface changes
-SORD_VERSION = '0.12.0'
+SORD_VERSION = '0.12.1'
SORD_MAJOR_VERSION = '0'
# Mandatory waf variables