diff options
-rw-r--r-- | NEWS | 17 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 20 insertions, 3 deletions
@@ -1,3 +1,20 @@ +0.23.4 (devel) + * Recognize query attributes defined in PKCS#11 URI (RFC7512) [PR#31, + PR#37, PR#52] + * The trust policy module now recognizes CKA_NSS_MOZILLA_CA_POLICY + attribute, used by Firefox [#99453, PR#46] + * Add 'trust dump' command to dump all PKCS#11 objects in the + persistence format [PR#44] + * New experimental 'p11-kit server' command that allows PKCS#11 + forwarding through a Unix domain socket. A client-side module + p11-kit-client.so is also provided [PR#15] + * Add systemd unit files for exporting the proxy module through a + Unix domain socket [PR#35] + * New P11KitIter API to iterate over slots, tokens, and modules in + addition to objects [PR#28] + * libffi dependency is now optional [PR#9] + * Build fixes for FreeBSD, macOS, and Windows [PR#32, PR#39, PR#45] + 0.23.3 (devel) * Install private executables in libexecdir [#98817] * Fix link error of proxy module on macOS [#98022] diff --git a/configure.ac b/configure.ac index 67c9b1c..ec2c259 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_PREREQ(2.61) AC_INIT([p11-kit], - [0.23.3], + [0.23.4], [https://bugs.freedesktop.org/enter_bug.cgi?product=p11-glue], [p11-kit], [http://p11-glue.freedesktop.org/p11-kit.html]) @@ -13,9 +13,9 @@ AC_INIT([p11-kit], # +1 : 0 : 0 == removed an interface. Breaks old apps. # ? : +1 : ? == internal changes that doesn't break anything. -P11KIT_CURRENT=2 +P11KIT_CURRENT=3 P11KIT_REVISION=0 -P11KIT_AGE=2 +P11KIT_AGE=3 # ------------------------------------------------------------------------------ |