diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | bindings/python/conf.py | 4 | ||||
-rw-r--r-- | bindings/python/lilv.py | 2 | ||||
-rw-r--r-- | lilv.ttl | 48 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | src/lilv_config.h | 2 |
6 files changed, 35 insertions, 29 deletions
@@ -1,3 +1,9 @@ +lilv (0.24.19) unstable; urgency=medium + + * Update project metadata + + -- David Robillard <d@drobilla.net> Tue, 16 Aug 2022 00:21:46 +0000 + lilv (0.24.18) stable; urgency=medium * Allow programs to be used from subproject diff --git a/bindings/python/conf.py b/bindings/python/conf.py index 6eb7b69..26a0b2f 100644 --- a/bindings/python/conf.py +++ b/bindings/python/conf.py @@ -56,9 +56,9 @@ copyright = u'2016, David Robillard' # built documents. # # The short X.Y version. -version = '0.24.18' +version = '0.24.19' # The full version, including alpha/beta/rc tags. -release = '0.24.18' +release = '0.24.19' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/bindings/python/lilv.py b/bindings/python/lilv.py index d753c3f..ee9c11c 100644 --- a/bindings/python/lilv.py +++ b/bindings/python/lilv.py @@ -3,7 +3,7 @@ __author__ = "David Robillard" __copyright__ = "Copyright 2016-2020 David Robillard" __license__ = "ISC" -__version__ = "0.24.18" +__version__ = "0.24.19" __maintainer__ = "David Robillard" __email__ = "d@drobilla.net" __status__ = "Production" @@ -1,29 +1,29 @@ @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . -@prefix : <http://usefulinc.com/ns/doap#> . +@prefix doap: <http://usefulinc.com/ns/doap#> . @prefix foaf: <http://xmlns.com/foaf/0.1/> . -<http://drobilla.net/software/lilv> - a :Project ; - :bug-database <http://dev.drobilla.net/query?status=new&status=assigned&status=reopened&component=LILV&order=priority> ; - :developer [ - a foaf:Person ; - rdfs:seeAlso <http://drobilla.net/drobilla.rdf> ; - foaf:homepage <http://drobilla.net> ; - foaf:mbox_sha1sum "253b3c58086250260bac1232d744d150274ad308" ; - foaf:name "David Robillard" - ] ; - :download-page <http://download.drobilla.net> ; - :homepage <http://drobilla.net/software/lilv> ; - :license <http://usefulinc.com/doap/licenses/gpl> ; - :name "LILV" ; - :programming-language "C", "Turtle" ; - :repository [ - :browse <http://dev.drobilla.net/browser/trunk/lilv> ; - :location <http://svn.drobilla.net/lad/trunk/lilv> ; - a :SVNRepository - ] ; - :shortdesc "Library for simple use of LV2 plugins" ; - :shortname "LILV" . - +<http://drobilla.net/drobilla#me> + a foaf:Person ; + rdfs:seeAlso <http://drobilla.net/drobilla> ; + foaf:mbox <mailto:d@drobilla.net> ; + foaf:name "David Robillard" ; + foaf:nick "drobilla" . +<http://drobilla.net/software/lilv> + a doap:Project ; + doap:blog <https://drobilla.net/category/lilv/> ; + doap:bug-database <https://gitlab.com/lv2/lilv/issues> ; + doap:description "C library for hosting LV2 plugins" ; + doap:developer <http://drobilla.net/drobilla#me> ; + doap:download-page <http://download.drobilla.net/> ; + doap:homepage <http://drobilla.net/software/lilv> ; + doap:implements <http://lv2plug.in/ns/lv2core> ; + doap:license <http://opensource.org/licenses/isc> ; + doap:maintainer <http://drobilla.net/drobilla#me> ; + doap:name "Lilv" ; + doap:programming-language "C" ; + doap:repository [ + a doap:GitBranch ; + doap:location <https://gitlab.com/lv2/lilv.git> + ] . diff --git a/meson.build b/meson.build index 9063010..d7d3e8d 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ # SPDX-License-Identifier: CC0-1.0 OR ISC project('lilv', ['c'], - version: '0.24.18', + version: '0.24.19', license: 'ISC', meson_version: '>= 0.56.0', default_options: [ diff --git a/src/lilv_config.h b/src/lilv_config.h index 9b7cc5d..44fbe20 100644 --- a/src/lilv_config.h +++ b/src/lilv_config.h @@ -29,7 +29,7 @@ #define LILV_CONFIG_H // Define version unconditionally so a warning will catch a mismatch -#define LILV_VERSION "0.24.18" +#define LILV_VERSION "0.24.19" #if !defined(LILV_NO_DEFAULT_CONFIG) |