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-- | meson.build | 3 | ||||
-rw-r--r-- | src/lilv_config.h | 2 |
5 files changed, 12 insertions, 5 deletions
@@ -1,3 +1,9 @@ +lilv (0.24.21) unstable; urgency=medium + + * Fix dependencies in pkg-config file + + -- David Robillard <d@drobilla.net> Wed, 05 Oct 2022 19:46:05 +0000 + lilv (0.24.20) stable; urgency=medium * Adopt REUSE machine-readable licensing standard diff --git a/bindings/python/conf.py b/bindings/python/conf.py index 836921b..68c1145 100644 --- a/bindings/python/conf.py +++ b/bindings/python/conf.py @@ -60,9 +60,9 @@ copyright = u'2016, David Robillard' # built documents. # # The short X.Y version. -version = '0.24.20' +version = '0.24.21' # The full version, including alpha/beta/rc tags. -release = '0.24.20' +release = '0.24.21' # 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 ab1ff75..ab7a20b 100644 --- a/bindings/python/lilv.py +++ b/bindings/python/lilv.py @@ -6,7 +6,7 @@ __author__ = "David Robillard" __copyright__ = "Copyright 2016-2022 David Robillard" __license__ = "ISC" -__version__ = "0.24.20" +__version__ = "0.24.21" __maintainer__ = "David Robillard" __email__ = "d@drobilla.net" __status__ = "Production" diff --git a/meson.build b/meson.build index 1632a54..0bba180 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ # SPDX-License-Identifier: 0BSD OR ISC project('lilv', ['c'], - version: '0.24.20', + version: '0.24.21', license: 'ISC', meson_version: '>= 0.56.0', default_options: [ @@ -165,6 +165,7 @@ pkg.generate( extra_cflags: extra_c_args, filebase: versioned_name, name: 'Lilv', + requires: ['lv2'], subdirs: [versioned_name], version: meson.project_version(), ) diff --git a/src/lilv_config.h b/src/lilv_config.h index d348a03..cb8ad04 100644 --- a/src/lilv_config.h +++ b/src/lilv_config.h @@ -16,7 +16,7 @@ #define LILV_CONFIG_H // Define version unconditionally so a warning will catch a mismatch -#define LILV_VERSION "0.24.20" +#define LILV_VERSION "0.24.21" #if !defined(LILV_NO_DEFAULT_CONFIG) |