From abb2e63cad19ef7100ba867f049c30f5a11d2b1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Veronika=20Hanul=C3=ADkov=C3=A1?= Date: Mon, 13 Jan 2025 14:30:12 +0100 Subject: [PATCH] 0.26.1 --- .appveyor.yml | 2 +- NEWS | 12 ++++++++++++ SECURITY.md | 4 ++-- configure.ac | 4 ++-- 4 files changed, 17 insertions(+), 5 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index a0a4c30de2..5e208e5f7c 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,4 +1,4 @@ -version: 0.26.0.{build} +version: 0.26.1.{build} platform: - x86 diff --git a/NEWS b/NEWS index 9039c2adaf..b014da5bc9 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,17 @@ NEWS for OpenSC -- History of user visible changes +# New in 0.26.1; 2025-01-14 + +## General improvements +* Align allocations of sc_mem_secure_alloc (#3281) +* Fix -O3 gcc optimization failure on amd64 and ppc64el (#3299) + +## pkcs11-spy +* Avoid crash while spying C_GetInterface() (#3275) + +## TCOS +* Fix reading certificate (#3296) + # New in 0.26.0; 2024-11-13 ## Security diff --git a/SECURITY.md b/SECURITY.md index d80ec9ee8a..017dcf92aa 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -9,8 +9,8 @@ backport security fixes into them. Only the last release is supported. | Version | Supported | | -------- | ------------------ | -| 0.26.0 | :white_check_mark: | -| < 0.26.0 | :x: | +| 0.26.1 | :white_check_mark: | +| < 0.26.1 | :x: | ## Reporting a Vulnerability diff --git a/configure.ac b/configure.ac index 1fbdced343..894cd4a19f 100644 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,7 @@ define([PRODUCT_BUGREPORT], [https://github.com/OpenSC/OpenSC/issues]) define([PRODUCT_URL], [https://github.com/OpenSC/OpenSC]) define([PACKAGE_VERSION_MAJOR], [0]) define([PACKAGE_VERSION_MINOR], [26]) -define([PACKAGE_VERSION_FIX], [0]) +define([PACKAGE_VERSION_FIX], [1]) define([PACKAGE_SUFFIX], []) define([VS_FF_LEGAL_COPYRIGHT], [OpenSC Project]) @@ -48,7 +48,7 @@ OPENSC_VS_FF_PRODUCT_URL="VS_FF_PRODUCT_URL" # (Interfaces added: CURRENT++, REVISION=0) OPENSC_LT_CURRENT="12" OPENSC_LT_OLDEST="12" -OPENSC_LT_REVISION="1" +OPENSC_LT_REVISION="2" OPENSC_LT_AGE="$((${OPENSC_LT_CURRENT}-${OPENSC_LT_OLDEST}))" AC_CONFIG_SRCDIR([src/libopensc/sc.c])