From 8c604c483acd14b7ef3a17331dd9af2f6d525005 Mon Sep 17 00:00:00 2001
From: Gijs Peskens <gijs@in2ip.nl>
Date: Wed, 20 Oct 2021 16:35:24 +0200
Subject: [PATCH] Increment version in preperation of release

---
 meson.build | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/meson.build b/meson.build
index a3ced875..8e906ac1 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()
 
-- 
GitLab