Skip to content

Commit

Permalink
released 0.4.12
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Trojnara <Michal.Trojnara@stunnel.org>
  • Loading branch information
mtrojnar committed Jul 15, 2022
1 parent beecadd commit 53d65dc
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
19 changes: 18 additions & 1 deletion NEWS
@@ -1,6 +1,23 @@
NEWS for Libp11 -- History of user visible changes

New in 0.4.12; unreleased
New in 0.4.12; 2022-07-15; Michał Trojnara
* Fixed using an explicitly provided PIN regardless of the secure login
flag (Alon Bar-Lev)
* Fixed RSA_PKCS1_PADDING handling (Michał Trojnara)
* Fixed a crash on LLP64, including 64-bit Windows (Małgorzata Olszówka)
* Fixed searching objects when both ID and label are specified (minfrin)
* Fixed the OAEP "source" parameter (S-P Chan)
* Fixed object searching by label (Michał Trojnara)
* Fixed thread safety in slot enumeration (Michał Trojnara)
* Fixed storing certificates on tokens (Mateusz Kwiatkowski)
* Fixed several memory leaks (Michał Trojnara, Jakub Jelen, Timo Teräs)
* Fixed OpenSSL 3.0 compatibility (Jakub Jelen)
* Fixed LibreSSL compatibility (orbea, patchMonkey156)
* Major concurrency improvements and refactoring (Timo Teräs)
* Added re-numeration of slots as an engine control command (Markus Koetter)
* Added the PKCS11_update_slots() API function (Timo Teräs)
* Added support for the SHA3 hash function (alegon01)
* Added a self-test for engine RSA operations (Uri Blumenthal)

New in 0.4.11; 2020-10-11; Michał Trojnara
* Fixed "EVP_PKEY_derive:buffer too small" EC errors (Luka Logar)
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Expand Up @@ -6,7 +6,7 @@ AC_PREREQ(2.60)
define([PACKAGE_VERSION_MAJOR], [0])
define([PACKAGE_VERSION_MINOR], [4])
define([PACKAGE_VERSION_FIX], [12])
define([PACKAGE_SUFFIX], [_git])
define([PACKAGE_SUFFIX], [])

AC_INIT([libp11],[PACKAGE_VERSION_MAJOR.PACKAGE_VERSION_MINOR.PACKAGE_VERSION_FIX[]PACKAGE_SUFFIX])
AC_CONFIG_AUX_DIR([.])
Expand Down Expand Up @@ -57,8 +57,8 @@ esac
# the openssl version we link to. If the ABI is broken on a later
# release, we should either stick to supporting a single openssl ABI
# or bump the LT_OLDEST version sufficiently to avoid clashes.
LIBP11_LT_REVISION="3"
LIBP11_LT_CURRENT="7"
LIBP11_LT_REVISION="0"
LIBP11_LT_CURRENT="8"
LIBP11_LT_AGE="$((${LIBP11_LT_CURRENT}-${LIBP11_LT_OLDEST}))"

gl_LD_VERSION_SCRIPT
Expand Down
4 changes: 2 additions & 2 deletions src/libp11.rc
@@ -1,7 +1,7 @@
#include <winresrc.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 7,4,3,0
FILEVERSION 8,5,0,0
PRODUCTVERSION 0,4,12,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
Expand All @@ -20,7 +20,7 @@ BEGIN
VALUE "Comments", "Provided under the terms of the GNU General Public License (LGPLv2.1+).\0"
VALUE "CompanyName", "OpenSC Project\0"
VALUE "FileDescription", "PKCS#11 access library\0"
VALUE "FileVersion", "7.4.3.0\0"
VALUE "FileVersion", "8.5.0.0\0"
VALUE "InternalName", "libp11\0"
VALUE "LegalCopyright", "OpenSC Project\0"
VALUE "LegalTrademarks", "\0"
Expand Down

0 comments on commit 53d65dc

Please sign in to comment.