From f130654dcdfc21ba0ed217f8f815e3407b73c809 Mon Sep 17 00:00:00 2001 From: Zoltan Fridrich Date: Wed, 15 Nov 2023 12:03:15 +0100 Subject: [PATCH] Release 0.25.3 Signed-off-by: Zoltan Fridrich --- NEWS | 4 ++++ configure.ac | 4 ++-- meson.build | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 3b0691db..58b37e5e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,7 @@ +0.25.3 (stable) +* rpc: fix serialization of NULL mechanism pointer [PR#601] +* fix meson build failure in macOS (appleframeworks not found) [PR#603] + 0.25.2 (stable) * fix error code checking of readpassphrase for --login option [PR#595] * build fixes [PR#594] diff --git a/configure.ac b/configure.ac index c31ac613..01287282 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_PREREQ(2.61) AC_INIT([p11-kit], - [0.25.2], + [0.25.3], [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=3 -P11KIT_REVISION=0 +P11KIT_REVISION=1 P11KIT_AGE=3 # ------------------------------------------------------------------------------ diff --git a/meson.build b/meson.build index 94508fc2..bf7c0a3d 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('p11-kit', 'c', - version: '0.25.2', + version: '0.25.3', 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 = 3 -revision = 0 +revision = 1 age = 3 soversion = current - age