Skip to content

Commit

Permalink
Release 0.25.5
Browse files Browse the repository at this point in the history
Signed-off-by: Zoltan Fridrich <zfridric@redhat.com>
  • Loading branch information
ZoltanFridrich committed Jul 4, 2024
1 parent fc0ed91 commit 0dd1133
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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]
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.4],
[0.25.5],
[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=4
P11KIT_REVISION=0
P11KIT_REVISION=1
P11KIT_AGE=4

# ------------------------------------------------------------------------------
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.4',
version: '0.25.5',
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 = 4
revision = 0
revision = 1
age = 4

soversion = current - age
Expand Down

0 comments on commit 0dd1133

Please sign in to comment.