Skip to content

Commit d9449ee

Browse files
Release 0.25.4
Signed-off-by: Zoltan Fridrich <[email protected]>
1 parent c203931 commit d9449ee

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

NEWS

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
0.25.4 (stable)
2+
* rpc: add support for recursive attributes [PR#624, PR#629, PR#631, PR#633]
3+
* p11-kit: add function to check run-time version of the library [PR#637]
4+
* p11-kit: expose version information through macros [PR#635]
5+
* p11-kit: add option to specify CKA_ID in generate-keypair and import-object commands [PR#615]
6+
* p11-kit: add --provider option to specify PKCS#11 module when using p11-kit commands [PR#611]
7+
* p11-kit: fix a bug where eddsa mechanism isn't recognized in generate-keypair [PR#617]
8+
* p11-kit: fallback to C_GetFunctionList when C_GetInterface returns CKR_FUNCTION_NOT_SUPPORTED [PR#622]
9+
* bug and build fixes [PR#603, PR#604, PR#605, PR#606, PR#609, PR#614, PR#616, PR#619, PR#627, PR#628, PR#632, PR#636, PR#639]
10+
111
0.25.3 (stable)
212
* rpc: fix serialization of NULL mechanism pointer [PR#601]
313
* fix meson build failure in macOS (appleframeworks not found) [PR#603]

configure.ac

Lines changed: 4 additions & 4 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.3],
4+
[0.25.4],
55
[https://github.com/p11-glue/p11-kit/issues],
66
[p11-kit],
77
[https://p11-glue.github.io/p11-glue/p11-kit.html])
@@ -13,9 +13,9 @@ AC_INIT([p11-kit],
1313
# +1 : 0 : 0 == removed an interface. Breaks old apps.
1414
# ? : +1 : ? == internal changes that doesn't break anything.
1515

16-
P11KIT_CURRENT=3
17-
P11KIT_REVISION=1
18-
P11KIT_AGE=3
16+
P11KIT_CURRENT=4
17+
P11KIT_REVISION=0
18+
P11KIT_AGE=4
1919

2020
# ------------------------------------------------------------------------------
2121
# p11-kit RPC protocol versions

meson.build

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

55
version_arr = meson.project_version().split('.')
@@ -9,9 +9,9 @@ micro_version = version_arr[2].to_int()
99

1010
cc = meson.get_compiler('c')
1111

12-
current = 3
13-
revision = 1
14-
age = 3
12+
current = 4
13+
revision = 0
14+
age = 4
1515

1616
soversion = current - age
1717
library_version = '@0@.@1@.@2@'.format(soversion, age, revision)

0 commit comments

Comments
 (0)