File tree Expand file tree Collapse file tree 3 files changed +20
-6
lines changed
Expand file tree Collapse file tree 3 files changed +20
-6
lines changed Original file line number Diff line number Diff line change 11NEWS for Libp11 -- History of user visible changes
22
3- New in 0.4.11; unreleased
3+ New in 0.4.11; 2020-10-11; Michał Trojnara
4+ * Fixed "EVP_PKEY_derive:buffer too small" EC errors (Luka Logar)
5+ * Fixed various memory leaks (Mateusz Kwiatkowski)
6+ * Fixed Windows VERSIONINFO (Pavol Misik)
7+ * Fixed builds with OpenSSL older than 1.0.2 (Michał Trojnara)
8+ * Fixed a double free in EVP_PKEY_meth_free() (Mikhail Durnev)
9+ * Added CKA_VALUE_LEN to EC key derivation template (Michał Trojnara)
10+ * Fixed handling keys without label attribute (efternavn)
11+ * Updated the tests (Anderson Toshiyuki Sasaki)
12+ * Made ECDH-derived keys extractable (Bent Bisballe Nyeng)
13+ * Added support for pin-source within PKCS#11 URI (Stanislav Levin)
14+ * Improved LibreSSL compatibility (patchMonkey156)
15+ * Fixed handling RSA private keys in BIND (Stanislav Levin)
16+ * Added macOS testing support (Stanislav Levin)
17+ * Fixed engine object search algorithm (Anderson Toshiyuki Sasaki)
418
519New in 0.4.10; 2019-04-03; Michał Trojnara
620* Added EC signing through EVP API (Bryan Hunt)
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ dnl -*- mode: m4; -*-
22
33AC_PREREQ ( 2.60 )
44
5- # When bumping versions see also the LT vesion numbers below.
5+ # When bumping versions see also the LT version numbers below.
66define ( [ PACKAGE_VERSION_MAJOR] , [ 0] )
77define ( [ PACKAGE_VERSION_MINOR] , [ 4] )
88define ( [ PACKAGE_VERSION_FIX] , [ 11] )
9- define ( [ PACKAGE_SUFFIX] , [ _git ] )
9+ define ( [ PACKAGE_SUFFIX] , [ ] )
1010
1111AC_INIT ( [ libp11] ,[ PACKAGE_VERSION_MAJOR.PACKAGE_VERSION_MINOR.PACKAGE_VERSION_FIX[ ] PACKAGE_SUFFIX] )
1212AC_CONFIG_AUX_DIR ( [ .] )
5656# the openssl version we link to. If the ABI is broken on a later
5757# release, we should either stick to supporting a single openssl ABI
5858# or bump the LT_OLDEST version sufficiently to avoid clashes.
59- LIBP11_LT_REVISION="2 "
59+ LIBP11_LT_REVISION="3 "
6060LIBP11_LT_CURRENT="7"
6161LIBP11_LT_AGE="$((${LIBP11_LT_CURRENT}-${LIBP11_LT_OLDEST}))"
6262
Original file line number Diff line number Diff line change 11#include <winresrc.h>
22
33VS_VERSION_INFO VERSIONINFO
4- FILEVERSION 7,4,2 ,0
4+ FILEVERSION 7,4,3 ,0
55 PRODUCTVERSION 0,4,11,0
66 FILEFLAGSMASK 0x3fL
77#ifdef _DEBUG
2020 VALUE "Comments", "Provided under the terms of the GNU General Public License (LGPLv2.1+).\0"
2121 VALUE "CompanyName", "OpenSC Project\0"
2222 VALUE "FileDescription", "PKCS#11 access library\0"
23- VALUE "FileVersion", "7.4.2 .0\0"
23+ VALUE "FileVersion", "7.4.3 .0\0"
2424 VALUE "InternalName", "libp11\0"
2525 VALUE "LegalCopyright", "OpenSC Project\0"
2626 VALUE "LegalTrademarks", "\0"
You can’t perform that action at this time.
0 commit comments