diff options
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | meson.build | 3 | ||||
-rw-r--r-- | src/sord_config.h | 2 |
3 files changed, 9 insertions, 2 deletions
@@ -1,3 +1,9 @@ +sord (0.16.15) unstable; urgency=medium + + * Fix dependencies in pkg-config file + + -- David Robillard <d@drobilla.net> Wed, 05 Oct 2022 19:43:22 +0000 + sord (0.16.14) stable; urgency=medium * Adopt REUSE machine-readable licensing standard diff --git a/meson.build b/meson.build index a8b94da..669e180 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ # SPDX-License-Identifier: 0BSD OR ISC project('sord', ['c'], - version: '0.16.14', + version: '0.16.15', license: 'ISC', meson_version: '>= 0.56.0', default_options: [ @@ -94,6 +94,7 @@ pkg.generate( extra_cflags: extra_c_args, filebase: versioned_name, name: 'Sord', + requires: ['serd-0'], subdirs: [versioned_name], version: meson.project_version(), ) diff --git a/src/sord_config.h b/src/sord_config.h index eb916bf..7853b4a 100644 --- a/src/sord_config.h +++ b/src/sord_config.h @@ -16,7 +16,7 @@ #define SORD_CONFIG_H // Define version unconditionally so a warning will catch a mismatch -#define SORD_VERSION "0.16.14" +#define SORD_VERSION "0.16.15" #if !defined(SORD_NO_DEFAULT_CONFIG) |