Skip to content

Commit 4f82137

Browse files
committed
Release 0.25.6
Signed-off-by: Daiki Ueno <ueno@gnu.org>
1 parent 49ed354 commit 4f82137

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

NEWS

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
0.25.6 (stable)
2+
* rpc: Add module configuration option to specify server address [PR#707]
3+
* rpc: Correctly map Mozilla certificate distrust attributes [PR#705]
4+
* rpc: Fix empty array attribute handling [PR#704]
5+
* server: Remove libsystemd dependency for socket activation [PR#685]
6+
* Avoid segfault if p11_library_init_impl/p11_library_uninit are called multiple times [PR#682]
7+
* Add zsh completions [PR#674]
8+
* pkcs11: Update pkcs11.h to version 3.1 [PR#671]
9+
* pkcs11: Add IBM specific mechanisms [PR#669]
10+
* server: check SHELL if (and only if) neither --sh nor --csh is specified [PR#661]
11+
* trust: don't create file names longer then 255 [PR#659]
12+
* trust: sort paths for reproducible extract [PR#656]
13+
* Build and test fixes [PR#647, PR#653, PR#654, PR#657, PR#660, PR#667, PR#673, PR#681, PR#683, PR#688, PR#694]
14+
* Update translations [PR#663, PR#701]
15+
116
0.25.5 (stable)
217
* iter: fix recursive attribute loading [PR#642]
318
* fix building on FreeBSD 14.0 (amd64) [PR#644]

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.5],
4+
[0.25.6],
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=1
17+
P11KIT_REVISION=2
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.5',
2+
version: '0.25.6',
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 = 1
13+
revision = 2
1414
age = 4
1515

1616
soversion = current - age

0 commit comments

Comments
 (0)