Skip to content

Commit f2c785d

Browse files
committed
Released 0.4.13
1 parent 32ea9b5 commit f2c785d

File tree

4 files changed

+22
-8
lines changed

4 files changed

+22
-8
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
workflow_dispatch:
77

88
env:
9-
version: 0.4.13_git
9+
version: 0.4.13
1010

1111
jobs:
1212
build:

NEWS

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

3-
New in 0.4.13; unreleased
4-
* Increased maximum PIN length.
5-
* Fixed memory leak of RSA/EC methods when releasing PKCS11_CTX.
3+
New in 0.4.13; 2024-12-13; Michał Trojnara
4+
* Increased maximum PIN length (Michał Trojnara)
5+
* Fixed several memory leaks (Michał Trojnara, Małgorzata Olszówka)
6+
* Don't include libp11.rc VERSIONINFO into pkcs11 (Mikhail Titov)
7+
* Reimplement CI with GitHub Actions (Michał Trojnara, Małgorzata Olszówka)
8+
* Improved tests (Małgorzata Olszówka)
9+
* Added static ENGINE (libpkcas11.a) build (Marouene Boubakri)
10+
* Added a workaround broken foreign key handling in OpenSSL
11+
3.0.12-3.0.13, 3.1.4-3.1.5, 3.2.0-3.2.1 (Małgorzata Olszówka)
12+
* Added a workaround for conflicting atexit() callbacks (Michał Trojnara)
13+
* Always login with PIN If FORCE_LOGIN is specified in openssl config
14+
(Plamen Todorov)
15+
* Added OAEP support to RSA_private_decrypt (Peter Popovec)
16+
* Added PKCS11_enumerate_*_ext functions (Harshal Gohel)
17+
* Fixed non-null-terminated label padding (Jorge Ramirez-Ortiz)
18+
* Fixed several object management issues (Jakub Jelen)
19+
* Deferred libp11 initialization until needed (Doug Engert)
620

721
New in 0.4.12; 2022-07-15; Michał Trojnara
822
* Fixed using an explicitly provided PIN regardless of the secure login

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ AC_PREREQ([2.69])
66
define([PACKAGE_VERSION_MAJOR], [0])
77
define([PACKAGE_VERSION_MINOR], [4])
88
define([PACKAGE_VERSION_FIX], [13])
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([.])
@@ -61,7 +61,7 @@ esac
6161
# release, we should either stick to supporting a single openssl ABI
6262
# or bump the LT_OLDEST version sufficiently to avoid clashes.
6363
LIBP11_LT_REVISION="0"
64-
LIBP11_LT_CURRENT="8"
64+
LIBP11_LT_CURRENT="9"
6565
LIBP11_LT_AGE="$((${LIBP11_LT_CURRENT}-${LIBP11_LT_OLDEST}))"
6666

6767
gl_LD_VERSION_SCRIPT

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 8,5,0,0
4+
FILEVERSION 9,6,0,0
55
PRODUCTVERSION 0,4,13,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", "8.5.0.0\0"
23+
VALUE "FileVersion", "9.6.0.0\0"
2424
VALUE "InternalName", "libp11\0"
2525
VALUE "LegalCopyright", "OpenSC Project\0"
2626
VALUE "LegalTrademarks", "\0"

0 commit comments

Comments
 (0)