diff options
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | bindings/python/conf.py | 4 | ||||
-rw-r--r-- | bindings/python/lilv.py | 2 | ||||
-rw-r--r-- | meson.build | 2 | ||||
-rw-r--r-- | src/lilv_config.h | 2 |
5 files changed, 7 insertions, 7 deletions
@@ -1,9 +1,9 @@ -lilv (0.24.17) unstable; urgency=medium +lilv (0.24.18) stable; urgency=medium * Allow programs to be used from subproject * Fix default LV2_PATH - -- David Robillard <d@drobilla.net> Tue, 09 Aug 2022 13:46:15 +0000 + -- David Robillard <d@drobilla.net> Fri, 12 Aug 2022 22:15:29 +0000 lilv (0.24.16) stable; urgency=medium diff --git a/bindings/python/conf.py b/bindings/python/conf.py index ef72ba1..6eb7b69 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.17' +version = '0.24.18' # The full version, including alpha/beta/rc tags. -release = '0.24.17' +release = '0.24.18' # 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 a0ca308..d753c3f 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.17" +__version__ = "0.24.18" __maintainer__ = "David Robillard" __email__ = "d@drobilla.net" __status__ = "Production" diff --git a/meson.build b/meson.build index da65b9a..9063010 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.17', + version: '0.24.18', license: 'ISC', meson_version: '>= 0.56.0', default_options: [ diff --git a/src/lilv_config.h b/src/lilv_config.h index 2a166c8..9b7cc5d 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.17" +#define LILV_VERSION "0.24.18" #if !defined(LILV_NO_DEFAULT_CONFIG) |