summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-01-24 03:01:28 +0000
committerDavid Robillard <d@drobilla.net>2014-01-24 03:01:28 +0000
commite01ab132bd755900cd48c9013d19ff61c5bb98f5 (patch)
treed5113aa752b72a5a272f99c873b693d55bb2ef12
parentbb3fcd6b15e742ba278fe5ac5cd975e67c715042 (diff)
downloadsratom-e01ab132bd755900cd48c9013d19ff61c5bb98f5.tar.gz
sratom-e01ab132bd755900cd48c9013d19ff61c5bb98f5.tar.bz2
sratom-e01ab132bd755900cd48c9013d19ff61c5bb98f5.zip
Don't set eg prefix in sratom_to_turtle.
Update NEWS. git-svn-id: http://svn.drobilla.net/lad/trunk/sratom@5320 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r--NEWS7
-rw-r--r--src/sratom.c2
-rw-r--r--wscript2
3 files changed, 8 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index bc60b18..3bc0cee 100644
--- a/NEWS
+++ b/NEWS
@@ -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,
diff --git a/wscript b/wscript
index b16ef6d..c767128 100644
--- a/wscript
+++ b/wscript
@@ -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