File tree Expand file tree Collapse file tree 4 files changed +22
-8
lines changed
Expand file tree Collapse file tree 4 files changed +22
-8
lines changed Original file line number Diff line number Diff line change 66 workflow_dispatch :
77
88env :
9- version : 0.4.13_git
9+ version : 0.4.13
1010
1111jobs :
1212 build :
Original file line number Diff line number Diff line change 11NEWS 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
721New in 0.4.12; 2022-07-15; Michał Trojnara
822* Fixed using an explicitly provided PIN regardless of the secure login
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ AC_PREREQ([2.69])
66define ( [ PACKAGE_VERSION_MAJOR] , [ 0] )
77define ( [ PACKAGE_VERSION_MINOR] , [ 4] )
88define ( [ PACKAGE_VERSION_FIX] , [ 13] )
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 ( [ .] )
6161# release, we should either stick to supporting a single openssl ABI
6262# or bump the LT_OLDEST version sufficiently to avoid clashes.
6363LIBP11_LT_REVISION="0"
64- LIBP11_LT_CURRENT="8 "
64+ LIBP11_LT_CURRENT="9 "
6565LIBP11_LT_AGE="$((${LIBP11_LT_CURRENT}-${LIBP11_LT_OLDEST}))"
6666
6767gl_LD_VERSION_SCRIPT
Original file line number Diff line number Diff line change 11#include <winresrc.h>
22
33VS_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
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"
You can’t perform that action at this time.
0 commit comments