diff options
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | src/sratom.c | 2 | ||||
-rw-r--r-- | wscript | 2 |
3 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,10 @@ +sratom (0.4.5) unstable; + + * Update for latest LV2 Atom Object simplification + * Don't set eg prefix in sratom_to_turtle + + -- David Robillard <d@drobilla.net> Thu, 23 Jan 2014 21:58:48 -0500 + sratom (0.4.4) stable; * Escape invalid characters when writing paths as URIs diff --git a/src/sratom.c b/src/sratom.c index ef0a450..0894102 100644 --- a/src/sratom.c +++ b/src/sratom.c @@ -465,8 +465,6 @@ sratom_to_turtle(Sratom* sratom, USTR(LV2_ATOM_URI "#")); serd_env_set_prefix_from_strings(env, USTR("rdf"), NS_RDF); serd_env_set_prefix_from_strings(env, USTR("xsd"), NS_XSD); - serd_env_set_prefix_from_strings(env, USTR("eg"), - USTR("http://example.org/")); SerdWriter* writer = serd_writer_new( SERD_TURTLE, @@ -8,7 +8,7 @@ import waflib.extras.autowaf as autowaf # major increment <=> incompatible changes # minor increment <=> compatible changes (additions) # micro increment <=> no interface changes -SRATOM_VERSION = '0.4.4' +SRATOM_VERSION = '0.4.5' SRATOM_MAJOR_VERSION = '0' # Mandatory waf variables |