Skip to content

Commit 973d31f

Browse files
committed
released 0.4.10
1 parent dbc59fe commit 973d31f

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

NEWS

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
NEWS for Libp11 -- History of user visible changes
22

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

1213
New in 0.4.9; 2018-09-03; Michał Trojnara
1314
* Fixed EVP_PKEY ENGINE reference count with the EC EVP_PKEY_METHOD

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ AC_PREREQ(2.60)
66
define([PACKAGE_VERSION_MAJOR], [0])
77
define([PACKAGE_VERSION_MINOR], [4])
88
define([PACKAGE_VERSION_FIX], [10])
9-
define([PACKAGE_SUFFIX], [_git])
9+
define([PACKAGE_SUFFIX], [])
1010

1111
AC_INIT([libp11],[PACKAGE_VERSION_MAJOR.PACKAGE_VERSION_MINOR.PACKAGE_VERSION_FIX[]PACKAGE_SUFFIX])
1212
AC_CONFIG_AUX_DIR([.])
@@ -53,7 +53,7 @@ esac
5353
# the openssl version we link to. If the ABI is broken on a later
5454
# release, we should either stick to supporting a single openssl ABI
5555
# or bump the LT_OLDEST version sufficiently to avoid clashes.
56-
LIBP11_LT_REVISION="1"
56+
LIBP11_LT_REVISION="2"
5757
LIBP11_LT_CURRENT="7"
5858
LIBP11_LT_AGE="$((${LIBP11_LT_CURRENT}-${LIBP11_LT_OLDEST}))"
5959

src/libp11.rc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <winresrc.h>
22

33
VS_VERSION_INFO VERSIONINFO
4-
FILEVERSION 7,4,1,0
4+
FILEVERSION 7,4,2,0
55
PRODUCTVERSION 0,4,10,0
66
FILEFLAGSMASK 0x3fL
77
#ifdef _DEBUG
@@ -20,7 +20,7 @@ BEGIN
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.1.0\0"
23+
VALUE "FileVersion", "7.4.2.0\0"
2424
VALUE "InternalName", "libp11\0"
2525
VALUE "LegalCopyright", "OpenSC Project\0"
2626
VALUE "LegalTrademarks", "\0"

0 commit comments

Comments
 (0)