diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | sord/sordmm.hpp | 7 | ||||
-rw-r--r-- | wscript | 2 |
3 files changed, 9 insertions, 6 deletions
@@ -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); } @@ -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 |