Skip to content

Commit abb2e63

Browse files
committed
0.26.1
1 parent 643d4c1 commit abb2e63

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

.appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 0.26.0.{build}
1+
version: 0.26.1.{build}
22

33
platform:
44
- x86

NEWS

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
NEWS for OpenSC -- History of user visible changes
22

3+
# New in 0.26.1; 2025-01-14
4+
5+
## General improvements
6+
* Align allocations of sc_mem_secure_alloc (#3281)
7+
* Fix -O3 gcc optimization failure on amd64 and ppc64el (#3299)
8+
9+
## pkcs11-spy
10+
* Avoid crash while spying C_GetInterface() (#3275)
11+
12+
## TCOS
13+
* Fix reading certificate (#3296)
14+
315
# New in 0.26.0; 2024-11-13
416

517
## Security

SECURITY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ backport security fixes into them. Only the last release is supported.
99

1010
| Version | Supported |
1111
| -------- | ------------------ |
12-
| 0.26.0 | :white_check_mark: |
13-
| < 0.26.0 | :x: |
12+
| 0.26.1 | :white_check_mark: |
13+
| < 0.26.1 | :x: |
1414

1515
## Reporting a Vulnerability
1616

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ define([PRODUCT_BUGREPORT], [https://github.com/OpenSC/OpenSC/issues])
88
define([PRODUCT_URL], [https://github.com/OpenSC/OpenSC])
99
define([PACKAGE_VERSION_MAJOR], [0])
1010
define([PACKAGE_VERSION_MINOR], [26])
11-
define([PACKAGE_VERSION_FIX], [0])
11+
define([PACKAGE_VERSION_FIX], [1])
1212
define([PACKAGE_SUFFIX], [])
1313

1414
define([VS_FF_LEGAL_COPYRIGHT], [OpenSC Project])
@@ -48,7 +48,7 @@ OPENSC_VS_FF_PRODUCT_URL="VS_FF_PRODUCT_URL"
4848
# (Interfaces added: CURRENT++, REVISION=0)
4949
OPENSC_LT_CURRENT="12"
5050
OPENSC_LT_OLDEST="12"
51-
OPENSC_LT_REVISION="1"
51+
OPENSC_LT_REVISION="2"
5252
OPENSC_LT_AGE="$((${OPENSC_LT_CURRENT}-${OPENSC_LT_OLDEST}))"
5353

5454
AC_CONFIG_SRCDIR([src/libopensc/sc.c])

0 commit comments

Comments
 (0)