diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | src/world.c | 2 | ||||
-rw-r--r-- | wscript | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +lilv (0.14.2) stable; + + * Fix dynmanifest support + + -- David Robillard <d@drobilla.net> Thu, 19 Apr 2012 16:11:31 -0400 + lilv (0.14.0) stable; * Add lilv_plugin_get_extension_data diff --git a/src/world.c b/src/world.c index 8eb3591..b26ff55 100644 --- a/src/world.c +++ b/src/world.c @@ -460,7 +460,7 @@ lilv_world_load_dyn_manifest(LilvWorld* world, SerdReader* reader = sord_new_reader( world->model, env, SERD_TURTLE, sord_node_copy(dmanifest)); serd_reader_add_blank_prefix(reader, - lilv_world_blank_node_prefix(p->world)); + lilv_world_blank_node_prefix(world)); serd_reader_read_file_handle(reader, fd, (const uint8_t*)"(dyn-manifest)"); serd_reader_free(reader); @@ -8,7 +8,7 @@ import waflib.Options as Options import waflib.Logs as Logs # Version of this package (even if built as a child) -LILV_VERSION = '0.14.0' +LILV_VERSION = '0.14.2' LILV_MAJOR_VERSION = '0' # Library version (UNIX style major, minor, micro) |