Skip to content
Snippets Groups Projects
Commit 5f0ea016 authored by Gijs Peskens's avatar Gijs Peskens
Browse files

Bump version for release

parent 546c2198
No related branches found
Tags v0.2.4
No related merge requests found
......@@ -4,7 +4,7 @@
# SPDX-License-Identifier: BSD-2-Clause
project('libRIST', 'c',
version: '0.2.3',
version: '0.2.4',
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 = 1
librist_abi_revision = 2
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)
......@@ -27,7 +27,7 @@ librist_version = '@0@.@1@.@2@'.format(librist_abi_current - librist_abi_age, li
#API follows semver rules:
#MAJOR version when you make incompatible API changes,
#MINOR version when you add functionality in a backwards-compatible manner, and
#PATCH version when you make backwards-compatible bug fixes.
#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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment