Skip to content

Commit

Permalink
Release 0.25.3
Browse files Browse the repository at this point in the history
Signed-off-by: Zoltan Fridrich <[email protected]>
  • Loading branch information
ZoltanFridrich committed Nov 15, 2023
1 parent 66f1fc7 commit ff08398
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -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])
Expand All @@ -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

# ------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
@@ -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('.')
Expand All @@ -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
Expand Down

0 comments on commit ff08398

Please sign in to comment.