Skip to content

Commit

Permalink
Released 0.4.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrojnar committed Dec 13, 2024
1 parent 32ea9b5 commit f2c785d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:

env:
version: 0.4.13_git
version: 0.4.13

jobs:
build:
Expand Down
20 changes: 17 additions & 3 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
NEWS for Libp11 -- History of user visible changes

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

New in 0.4.12; 2022-07-15; Michał Trojnara
* Fixed using an explicitly provided PIN regardless of the secure login
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.69])
define([PACKAGE_VERSION_MAJOR], [0])
define([PACKAGE_VERSION_MINOR], [4])
define([PACKAGE_VERSION_FIX], [13])
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 @@ -61,7 +61,7 @@ esac
# release, we should either stick to supporting a single openssl ABI
# or bump the LT_OLDEST version sufficiently to avoid clashes.
LIBP11_LT_REVISION="0"
LIBP11_LT_CURRENT="8"
LIBP11_LT_CURRENT="9"
LIBP11_LT_AGE="$((${LIBP11_LT_CURRENT}-${LIBP11_LT_OLDEST}))"

gl_LD_VERSION_SCRIPT
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 8,5,0,0
FILEVERSION 9,6,0,0
PRODUCTVERSION 0,4,13,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", "8.5.0.0\0"
VALUE "FileVersion", "9.6.0.0\0"
VALUE "InternalName", "libp11\0"
VALUE "LegalCopyright", "OpenSC Project\0"
VALUE "LegalTrademarks", "\0"
Expand Down

0 comments on commit f2c785d

Please sign in to comment.