diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | src/sratom.c | 3 |
3 files changed, 8 insertions, 3 deletions
@@ -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; |