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-- | doc/lv2apply.1 | 2 | ||||
-rw-r--r-- | doc/lv2bench.1 | 2 | ||||
-rw-r--r-- | doc/lv2info.1 | 2 | ||||
-rw-r--r-- | doc/lv2ls.1 | 2 | ||||
-rw-r--r-- | meson.build | 3 | ||||
-rw-r--r-- | src/lilv_config.h | 2 |
9 files changed, 16 insertions, 9 deletions
@@ -1,3 +1,9 @@ +lilv (0.24.25) unstable; urgency=medium + + * Fix library current_version on MacOS + + -- David Robillard <d@drobilla.net> Thu, 14 Mar 2024 17:02:11 +0000 + lilv (0.24.24) stable; urgency=medium * Avoid overriding state features passed by the host diff --git a/bindings/python/conf.py b/bindings/python/conf.py index 5e626f0..52d514a 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.24' +version = '0.24.25' # The full version, including alpha/beta/rc tags. -release = '0.24.24' +release = '0.24.25' # 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 643dcb1..69f6e7d 100644 --- a/bindings/python/lilv.py +++ b/bindings/python/lilv.py @@ -6,7 +6,7 @@ __author__ = "David Robillard" __copyright__ = "Copyright 2016-2024 David Robillard" __license__ = "ISC" -__version__ = "0.24.24" +__version__ = "0.24.25" __maintainer__ = "David Robillard" __email__ = "d@drobilla.net" __status__ = "Production" diff --git a/doc/lv2apply.1 b/doc/lv2apply.1 index 3cb91ce..3bb0218 100644 --- a/doc/lv2apply.1 +++ b/doc/lv2apply.1 @@ -2,7 +2,7 @@ .\" # SPDX-License-Identifier: ISC .Dd Nov 29, 2022 .Dt LV2APPLY 1 -.Os Lilv 0.24.24 +.Os Lilv 0.24.25 .Sh NAME .Nm lv2apply .Nd apply an LV2 plugin to an audio file diff --git a/doc/lv2bench.1 b/doc/lv2bench.1 index 2ec8cba..e70c47d 100644 --- a/doc/lv2bench.1 +++ b/doc/lv2bench.1 @@ -2,7 +2,7 @@ .\" # SPDX-License-Identifier: ISC .Dd Nov 29, 2022 .Dt LV2BENCH 1 -.Os Lilv 0.24.24 +.Os Lilv 0.24.25 .Sh NAME .Nm lv2bench .Nd benchmark all installed and supported LV2 plugins diff --git a/doc/lv2info.1 b/doc/lv2info.1 index 0286b2f..43cde63 100644 --- a/doc/lv2info.1 +++ b/doc/lv2info.1 @@ -2,7 +2,7 @@ .\" # SPDX-License-Identifier: ISC .Dd Nov 29, 2022 .Dt LV2INFO 1 -.Os Lilv 0.24.24 +.Os Lilv 0.24.25 .Sh NAME .Nm lv2info .Nd print information about an installed LV2 plugin diff --git a/doc/lv2ls.1 b/doc/lv2ls.1 index d16d64d..3b96370 100644 --- a/doc/lv2ls.1 +++ b/doc/lv2ls.1 @@ -2,7 +2,7 @@ .\" # SPDX-License-Identifier: ISC .Dd Nov 29, 2022 .Dt LV2LS 1 -.Os Lilv 0.24.24 +.Os Lilv 0.24.25 .Sh NAME .Nm lv2ls .Nd list all installed LV2 plugins diff --git a/meson.build b/meson.build index 1bab956..b03e54d 100644 --- a/meson.build +++ b/meson.build @@ -11,7 +11,7 @@ project( ], license: 'ISC', meson_version: '>= 0.56.0', - version: '0.24.24', + version: '0.24.25', ) lilv_src_root = meson.current_source_dir() @@ -150,6 +150,7 @@ liblilv = library( versioned_name, sources, c_args: c_suppressions + extra_c_args + ['-DLILV_INTERNAL'], + darwin_versions: [major_version + '.0.0', meson.project_version()], dependencies: common_dependencies, gnu_symbol_visibility: 'hidden', include_directories: include_directories('include', 'src'), diff --git a/src/lilv_config.h b/src/lilv_config.h index 2ddb739..2f7c498 100644 --- a/src/lilv_config.h +++ b/src/lilv_config.h @@ -5,7 +5,7 @@ #define LILV_CONFIG_H // Define version unconditionally so a warning will catch a mismatch -#define LILV_VERSION "0.24.24" +#define LILV_VERSION "0.24.25" // Separator between entries in variables like PATH #ifndef LILV_PATH_SEP |