Skip to content

Commit b9c2de2

Browse files
committed
Released 0.4.16
Signed-off-by: Michał Trojnara <[email protected]>
1 parent adeaffd commit b9c2de2

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
workflow_dispatch:
1010

1111
env:
12-
version: 0.4.16_git
12+
version: 0.4.16
1313

1414
jobs:
1515
build:

NEWS

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

3-
New in 0.4.16; unreleased
3+
New in 0.4.16; 2025-06-23; Michał Trojnara
4+
* Fixed PKCS#11 module synchronization setup that was broken
5+
in libp11 0.4.14 (nojocodex)
46

57
New in 0.4.15; 2025-06-09; Michał Trojnara
68
* Fixed incorrectly installing an internal header file (Alex Dupre)

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], [16])
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([.])
@@ -68,7 +68,7 @@ AM_CONDITIONAL([LIBP11_OSSL_PROVIDER], [test x$LIBP11_OSSL_PROVIDER = xyes])
6868
# the openssl version we link to. If the ABI is broken on a later
6969
# release, we should either stick to supporting a single openssl ABI
7070
# or bump the LT_OLDEST version sufficiently to avoid clashes.
71-
LIBP11_LT_REVISION="1"
71+
LIBP11_LT_REVISION="2"
7272
LIBP11_LT_CURRENT="10"
7373
LIBP11_LT_AGE="$((${LIBP11_LT_CURRENT}-${LIBP11_LT_OLDEST}))"
7474

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 10,7,1,0
4+
FILEVERSION 10,7,2,0
55
PRODUCTVERSION 0,4,16,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", "10.7.1.0\0"
23+
VALUE "FileVersion", "10.7.2.0\0"
2424
VALUE "InternalName", "libp11\0"
2525
VALUE "LegalCopyright", "OpenSC Project\0"
2626
VALUE "LegalTrademarks", "\0"

0 commit comments

Comments
 (0)