Skip to content

Commit 2ee6126

Browse files
committed
Release 0.25.8
Signed-off-by: Daiki Ueno <ueno@gnu.org>
1 parent e7b760a commit 2ee6126

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
0.25.8 (stable)
2+
* rpc: Unbreak protocol compatibility by reverting "rpc: Correctly map Mozilla certificate distrust attributes" [PR#716]
3+
14
0.25.7 (stable)
25
* Build fixes from tarball with Meson [PR#714]
36

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
AC_PREREQ(2.61)
22

33
AC_INIT([p11-kit],
4-
[0.25.7],
4+
[0.25.8],
55
[https://github.com/p11-glue/p11-kit/issues],
66
[p11-kit],
77
[https://p11-glue.github.io/p11-glue/p11-kit.html])
@@ -14,7 +14,7 @@ AC_INIT([p11-kit],
1414
# ? : +1 : ? == internal changes that doesn't break anything.
1515

1616
P11KIT_CURRENT=4
17-
P11KIT_REVISION=2
17+
P11KIT_REVISION=3
1818
P11KIT_AGE=4
1919

2020
# ------------------------------------------------------------------------------

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('p11-kit', 'c',
2-
version: '0.25.7',
2+
version: '0.25.8',
33
meson_version: '>= 0.51')
44

55
version_arr = meson.project_version().split('.')
@@ -10,7 +10,7 @@ micro_version = version_arr[2].to_int()
1010
cc = meson.get_compiler('c')
1111

1212
current = 4
13-
revision = 2
13+
revision = 3
1414
age = 4
1515

1616
soversion = current - age

0 commit comments

Comments
 (0)