diff --git a/meson.build b/meson.build index a3ced8759b81211f0d0b56c0a973c6c037ffb720..8e906ac1d627dbee207d418d1c873f4ee66fbbda 100755 --- a/meson.build +++ b/meson.build @@ -4,7 +4,7 @@ # SPDX-License-Identifier: BSD-2-Clause project('libRIST', 'c', - version: '0.2.6', + version: '0.2.7', default_options: ['c_std=c99', 'warning_level=3', 'libdir=lib'], meson_version: '>= 0.51.0') @@ -18,7 +18,7 @@ cdata = configuration_data() #If any interfaces have been added since the last public release, then increment age. #If any interfaces have been removed or changed since the last public release, then set age to 0. librist_abi_current = 5 -librist_abi_revision = 4 +librist_abi_revision = 5 librist_abi_age = 1 librist_soversion = librist_abi_current - librist_abi_age librist_version = '@0@.@1@.@2@'.format(librist_abi_current - librist_abi_age, librist_abi_age, librist_abi_revision) @@ -30,8 +30,8 @@ librist_version = '@0@.@1@.@2@'.format(librist_abi_current - librist_abi_age, li #PATCH not used (doesn't make sense for API version, remains here for backwards compat) librist_api_version_major = 4 -librist_api_version_minor = 1 -librist_api_version_patch = 1 +librist_api_version_minor = 2 +librist_api_version_patch = 0 librist_src_root = meson.current_source_dir()