Skip to content

Commit

Permalink
released 0.4.11
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Trojnara <Michal.Trojnara@stunnel.org>
  • Loading branch information
mtrojnar committed Oct 11, 2020
1 parent 2d27955 commit 9ca6a71
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
16 changes: 15 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
NEWS for Libp11 -- History of user visible changes

New in 0.4.11; unreleased
New in 0.4.11; 2020-10-11; Michał Trojnara
* Fixed "EVP_PKEY_derive:buffer too small" EC errors (Luka Logar)
* Fixed various memory leaks (Mateusz Kwiatkowski)
* Fixed Windows VERSIONINFO (Pavol Misik)
* Fixed builds with OpenSSL older than 1.0.2 (Michał Trojnara)
* Fixed a double free in EVP_PKEY_meth_free() (Mikhail Durnev)
* Added CKA_VALUE_LEN to EC key derivation template (Michał Trojnara)
* Fixed handling keys without label attribute (efternavn)
* Updated the tests (Anderson Toshiyuki Sasaki)
* Made ECDH-derived keys extractable (Bent Bisballe Nyeng)
* Added support for pin-source within PKCS#11 URI (Stanislav Levin)
* Improved LibreSSL compatibility (patchMonkey156)
* Fixed handling RSA private keys in BIND (Stanislav Levin)
* Added macOS testing support (Stanislav Levin)
* Fixed engine object search algorithm (Anderson Toshiyuki Sasaki)

New in 0.4.10; 2019-04-03; Michał Trojnara
* Added EC signing through EVP API (Bryan Hunt)
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ dnl -*- mode: m4; -*-

AC_PREREQ(2.60)

# When bumping versions see also the LT vesion numbers below.
# When bumping versions see also the LT version numbers below.
define([PACKAGE_VERSION_MAJOR], [0])
define([PACKAGE_VERSION_MINOR], [4])
define([PACKAGE_VERSION_FIX], [11])
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 @@ -56,7 +56,7 @@ 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="2"
LIBP11_LT_REVISION="3"
LIBP11_LT_CURRENT="7"
LIBP11_LT_AGE="$((${LIBP11_LT_CURRENT}-${LIBP11_LT_OLDEST}))"

Expand Down
4 changes: 2 additions & 2 deletions src/libp11.rc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <winresrc.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 7,4,2,0
FILEVERSION 7,4,3,0
PRODUCTVERSION 0,4,11,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.2.0\0"
VALUE "FileVersion", "7.4.3.0\0"
VALUE "InternalName", "libp11\0"
VALUE "LegalCopyright", "OpenSC Project\0"
VALUE "LegalTrademarks", "\0"
Expand Down

0 comments on commit 9ca6a71

Please sign in to comment.