summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS6
-rw-r--r--meson.build2
-rw-r--r--src/sratom.c3
3 files changed, 8 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 979461d..930aa93 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,9 @@
+sratom (0.6.19) unstable; urgency=medium
+
+ * Improve code quality
+
+ -- David Robillard <d@drobilla.net> Sun, 19 Jan 2025 14:23:37 +0000
+
sratom (0.6.18) stable; urgency=medium
* Add lint option with project metadata and code formatting tests
diff --git a/meson.build b/meson.build
index 77934a0..d66a893 100644
--- a/meson.build
+++ b/meson.build
@@ -11,7 +11,7 @@ project(
],
license: 'ISC',
meson_version: '>= 0.56.0',
- version: '0.6.18',
+ version: '0.6.19',
)
sratom_src_root = meson.current_source_dir()
diff --git a/src/sratom.c b/src/sratom.c
index cffa501..882910c 100644
--- a/src/sratom.c
+++ b/src/sratom.c
@@ -106,8 +106,7 @@ sratom_set_sink(Sratom* sratom,
if (base_uri) {
serd_node_free(&sratom->base_uri);
sratom->base_uri =
- serd_node_new_uri_from_string(USTR(base_uri), NULL, NULL);
- serd_uri_parse((const uint8_t*)sratom->base_uri.buf, &sratom->base);
+ serd_node_new_uri_from_string(USTR(base_uri), NULL, &sratom->base);
}
sratom->write_statement = sink;
sratom->end_anon = end_sink;