diff options
-rw-r--r-- | .reuse/dep5 | 2 | ||||
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | bindings/python/conf.py | 4 | ||||
-rw-r--r-- | bindings/python/lilv.py | 2 | ||||
-rw-r--r-- | doc/conf.py.in | 4 | ||||
-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 | 6 | ||||
-rw-r--r-- | src/lilv_config.h | 2 |
12 files changed, 17 insertions, 16 deletions
diff --git a/.reuse/dep5 b/.reuse/dep5 index 73b8cb6..1219ed7 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -4,7 +4,7 @@ Upstream-Contact: David Robillard <d@drobilla.net> Source: https://gitlab.com/drobilla/lilv Files: AUTHORS NEWS lilv.ttl -Copyright: 2006-2022 David Robillard <d@drobilla.net> +Copyright: 2006-2025 David Robillard <d@drobilla.net> Comment: Contributed to the Commons as a representation of simple facts License: 0BSD OR ISC @@ -1,4 +1,4 @@ -lilv (0.24.25) unstable; urgency=medium +lilv (0.24.26) stable; urgency=medium * Add lint option with project metadata and code quality tests * Avoid use of VLAs in lv2apply @@ -10,7 +10,7 @@ lilv (0.24.25) unstable; urgency=medium * Improve const correctness * Replace more platform-specific code with use of zix - -- David Robillard <d@drobilla.net> Wed, 18 Dec 2024 17:57:56 +0000 + -- David Robillard <d@drobilla.net> Sun, 19 Jan 2025 13:53:31 +0000 lilv (0.24.24) stable; urgency=medium @@ -6,6 +6,7 @@ Lilv Lilv is a C library to make the use of LV2 plugins as simple as possible for applications. + For more information, see <http://drobilla.net/software/lilv>. -- David Robillard <d@drobilla.net> diff --git a/bindings/python/conf.py b/bindings/python/conf.py index 52d514a..fe62410 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.25' +version = '0.24.26' # The full version, including alpha/beta/rc tags. -release = '0.24.25' +release = '0.24.26' # 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 69f6e7d..a12f94f 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.25" +__version__ = "0.24.26" __maintainer__ = "David Robillard" __email__ = "d@drobilla.net" __status__ = "Production" diff --git a/doc/conf.py.in b/doc/conf.py.in index 444b70a..1831ded 100644 --- a/doc/conf.py.in +++ b/doc/conf.py.in @@ -1,10 +1,10 @@ -# Copyright 2020-2021 David Robillard <d@drobilla.net> +# Copyright 2020-2025 David Robillard <d@drobilla.net> # SPDX-License-Identifier: ISC # Project information project = "@LILV_TITLE@" -copyright = "2020-2023, David Robillard" +copyright = "2020-2025, David Robillard" author = "David Robillard" release = "@LILV_VERSION@" version = "@LILV_VERSION@" diff --git a/doc/lv2apply.1 b/doc/lv2apply.1 index d6c2f16..bcc49ba 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.25 +.Os Lilv 0.24.26 .Sh NAME .Nm lv2apply .Nd apply an LV2 plugin to an audio file diff --git a/doc/lv2bench.1 b/doc/lv2bench.1 index f03916a..5f87e6b 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.25 +.Os Lilv 0.24.26 .Sh NAME .Nm lv2bench .Nd benchmark all installed and supported LV2 plugins diff --git a/doc/lv2info.1 b/doc/lv2info.1 index 783cad0..d8950d2 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.25 +.Os Lilv 0.24.26 .Sh NAME .Nm lv2info .Nd print information about an installed LV2 plugin diff --git a/doc/lv2ls.1 b/doc/lv2ls.1 index e9a71b9..5b13243 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.25 +.Os Lilv 0.24.26 .Sh NAME .Nm lv2ls .Nd list all installed LV2 plugins diff --git a/meson.build b/meson.build index a3a2c27..d5bc4e9 100644 --- a/meson.build +++ b/meson.build @@ -12,7 +12,7 @@ project( ], license: 'ISC', meson_version: '>= 0.56.0', - version: '0.24.25', + version: '0.24.26', ) lilv_src_root = meson.current_source_dir() @@ -220,9 +220,9 @@ add_project_arguments(platform_defines, language: ['c']) m_dep = cc.find_library('m', required: false) dl_dep = cc.find_library('dl', required: false) -zix_dep = dependency('zix-0', fallback: 'zix', version: '>= 0.5.1') +zix_dep = dependency('zix-0', fallback: 'zix', version: '>= 0.6.0') serd_dep = dependency('serd-0', fallback: 'serd', version: '>= 0.30.10') -sord_dep = dependency('sord-0', fallback: 'sord', version: '>= 0.16.15') +sord_dep = dependency('sord-0', fallback: 'sord', version: '>= 0.16.16') lv2_dep = dependency('lv2', fallback: 'lv2', version: '>= 1.18.2') sratom_dep = dependency('sratom-0', fallback: 'sratom', version: '>= 0.6.10') diff --git a/src/lilv_config.h b/src/lilv_config.h index 2f7c498..467ab3d 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.25" +#define LILV_VERSION "0.24.26" // Separator between entries in variables like PATH #ifndef LILV_PATH_SEP |