Skip to content

Commit

Permalink
released 0.4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrojnar committed Apr 3, 2019
1 parent dbc59fe commit 973d31f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
NEWS for Libp11 -- History of user visible changes

New in 0.4.10; unreleased
New in 0.4.10; 2019-04-03; Michał Trojnara
* Added EC signing through EVP API (Bryan Hunt)
* Added an empty EC private key required by OpenSSL 1.1.1 (Doug Engert)
* Stored additional certificate attributes (FdLSifu, Michał Trojnara)
* Engine allowed to use private keys without a PIN (Michał Trojnara)
* Lazy binding used as a workaround for buggy modules (Michał Trojnara)
* MinGW build fixes and documentation (Michał Trojnara)
* Fixed a memory leak in error handling (Michał Trojnara)
* LibreSSL 2.8.3 build fixes (patchMonkey156)
* Error handling fixes (Michał Trojnara)

New in 0.4.9; 2018-09-03; Michał Trojnara
* Fixed EVP_PKEY ENGINE reference count with the EC EVP_PKEY_METHOD
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ AC_PREREQ(2.60)
define([PACKAGE_VERSION_MAJOR], [0])
define([PACKAGE_VERSION_MINOR], [4])
define([PACKAGE_VERSION_FIX], [10])
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 @@ -53,7 +53,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="1"
LIBP11_LT_REVISION="2"
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,1,0
FILEVERSION 7,4,2,0
PRODUCTVERSION 0,4,10,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.1.0\0"
VALUE "FileVersion", "7.4.2.0\0"
VALUE "InternalName", "libp11\0"
VALUE "LegalCopyright", "OpenSC Project\0"
VALUE "LegalTrademarks", "\0"
Expand Down

0 comments on commit 973d31f

Please sign in to comment.