Skip to content

Commit

Permalink
Starting 0.4.14_git
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrojnar committed Dec 20, 2024
1 parent 6d66918 commit e177b3b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 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
version: 0.4.14_git

jobs:
build:
Expand Down
2 changes: 2 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
NEWS for Libp11 -- History of user visible changes

New in 0.4.14; unreleased

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)
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ AC_PREREQ([2.69])
# When bumping versions see also the LT version numbers below.
define([PACKAGE_VERSION_MAJOR], [0])
define([PACKAGE_VERSION_MINOR], [4])
define([PACKAGE_VERSION_FIX], [13])
define([PACKAGE_SUFFIX], [])
define([PACKAGE_VERSION_FIX], [14])
define([PACKAGE_SUFFIX], [_git])

AC_INIT([libp11],[PACKAGE_VERSION_MAJOR.PACKAGE_VERSION_MINOR.PACKAGE_VERSION_FIX[]PACKAGE_SUFFIX])
AC_CONFIG_AUX_DIR([.])
Expand Down
4 changes: 2 additions & 2 deletions src/libp11.rc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

VS_VERSION_INFO VERSIONINFO
FILEVERSION 9,6,0,0
PRODUCTVERSION 0,4,13,0
PRODUCTVERSION 0,4,14,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x21L
Expand All @@ -27,7 +27,7 @@ BEGIN
VALUE "OriginalFilename", "libp11-3.dll\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "libp11\0"
VALUE "ProductVersion", "0.4.13.0\0"
VALUE "ProductVersion", "0.4.14.0\0"
VALUE "SpecialBuild", "\0"
END
END
Expand Down
8 changes: 4 additions & 4 deletions src/pkcs11.rc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#include <winresrc.h>

VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,4,13,0
PRODUCTVERSION 0,4,13,0
FILEVERSION 0,4,14,0
PRODUCTVERSION 0,4,14,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x21L
Expand All @@ -20,14 +20,14 @@ BEGIN
VALUE "Comments", "Provided under the terms of the GNU General Public License (LGPLv2.1+).\0"
VALUE "CompanyName", "OpenSC Project\0"
VALUE "FileDescription", "OpenSSL PKCS#11 engine\0"
VALUE "FileVersion", "0.4.13.0\0"
VALUE "FileVersion", "0.4.14.0\0"
VALUE "InternalName", "libp11\0"
VALUE "LegalCopyright", "OpenSC Project\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "pkcs11.dll\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "libp11\0"
VALUE "ProductVersion", "0.4.13.0\0"
VALUE "ProductVersion", "0.4.14.0\0"
VALUE "SpecialBuild", "\0"
END
END
Expand Down

0 comments on commit e177b3b

Please sign in to comment.