From 0dd113361057e477f40ff4d8788f3e7e400af5f9 Mon Sep 17 00:00:00 2001 From: Zoltan Fridrich Date: Thu, 4 Jul 2024 12:07:18 +0200 Subject: [PATCH] Release 0.25.5 Signed-off-by: Zoltan Fridrich --- NEWS | 5 +++++ configure.ac | 4 ++-- meson.build | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 3cd86543..1f34d1e5 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +0.25.5 (stable) +* iter: fix recursive attribute loading [PR#642] +* fix building on FreeBSD 14.0 (amd64) [PR#644] +* test fix [PR#645] + 0.25.4 (stable) * rpc: add support for recursive attributes [PR#624, PR#629, PR#631, PR#633] * p11-kit: add function to check run-time version of the library [PR#637] diff --git a/configure.ac b/configure.ac index afdc5b8e..a21d7509 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_PREREQ(2.61) AC_INIT([p11-kit], - [0.25.4], + [0.25.5], [https://github.com/p11-glue/p11-kit/issues], [p11-kit], [https://p11-glue.github.io/p11-glue/p11-kit.html]) @@ -14,7 +14,7 @@ AC_INIT([p11-kit], # ? : +1 : ? == internal changes that doesn't break anything. P11KIT_CURRENT=4 -P11KIT_REVISION=0 +P11KIT_REVISION=1 P11KIT_AGE=4 # ------------------------------------------------------------------------------ diff --git a/meson.build b/meson.build index f255de12..0b89542c 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('p11-kit', 'c', - version: '0.25.4', + version: '0.25.5', meson_version: '>= 0.51') version_arr = meson.project_version().split('.') @@ -10,7 +10,7 @@ micro_version = version_arr[2].to_int() cc = meson.get_compiler('c') current = 4 -revision = 0 +revision = 1 age = 4 soversion = current - age