Skip to content

Commit 379359d

Browse files
committed
Prepare 2.4.2 release
1 parent 801415b commit 379359d

File tree

7 files changed

+25
-9
lines changed

7 files changed

+25
-9
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Build dist with Linux
1010
runs-on: ubuntu-latest
1111
env:
12-
VERSION: 2.4.1
12+
VERSION: 2.4.2
1313
steps:
1414
- name: checkout
1515
uses: actions/checkout@v3
@@ -44,7 +44,7 @@ jobs:
4444
- os: windows-latest
4545
arch: x64
4646
env:
47-
VERSION: 2.4.1
47+
VERSION: 2.4.2
4848
steps:
4949
- name: Download source from source job
5050
uses: actions/download-artifact@v3
@@ -97,7 +97,7 @@ jobs:
9797
- os: macos-latest-xlarge
9898
arch: arm
9999
env:
100-
VERSION: 2.4.1
100+
VERSION: 2.4.2
101101
SO_VERSION: 2
102102
steps:
103103
- name: Download source from source job

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
=== Version 2.4.1
22

3+
PKCS11: Add Symmetric key capabilities to searchable criteria
4+
PKCS11: Add support for CKA_KEY_TYPE when searching for objects
5+
PKCS11: Add support for CKA_MODIFIABLE and CKA_COPYABLE attributes for AES and Wrap keys
6+
Test: Increase test coverage
7+
8+
=== Version 2.4.1
9+
310
pkcs11: Security update for https://www.yubico.com/support/security-advisories/ysa-2023-01/[YSA-2023-01]
411
pkcs11: Allow only a user with access to all the object's domains to edit its attributes
512
pkcs11: Allow for the creation of an asymmetric key even if CKA_ID or CKA_LABEL attribute values for the private and public key are different.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ endif ()
9494

9595
set (yubihsm_shell_VERSION_MAJOR 2)
9696
set (yubihsm_shell_VERSION_MINOR 4)
97-
set (yubihsm_shell_VERSION_PATCH 1)
97+
set (yubihsm_shell_VERSION_PATCH 2)
9898
set (VERSION "${yubihsm_shell_VERSION_MAJOR}.${yubihsm_shell_VERSION_MINOR}.${yubihsm_shell_VERSION_PATCH}")
9999

100100
if (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")

debian/changelog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
yubihsm-shell (2.4.2) unstable; urgency=medium
2+
3+
* pkcs11: Add Symmetric key capabilities to searchable criteria
4+
* pkcs11: Add support for CKA_KEY_TYPE when searching for objects
5+
* pkcs11: Add support for CKA_MODIFIABLE and CKA_COPYABLE attributes for AES and Wrap keys
6+
* test: Increase test coverage
7+
8+
-- Aveen Ismail <aveen.ismail@yubico.com> Mon, 30 Oct 2023 14:55:20 +0100
9+
110
yubihsm-shell (2.4.1) unstable; urgency=medium
211

312
* pkcs11: Allow only a user with access to all the object's domains to edit its attributes

resources/release/linux/yubihsm-shell.spec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
%global _yubihsm yubihsm
22

33
Name: yubihsm-shell
4-
Version: 2.4.1
4+
Version: 2.4.2
55
Release: 1%{?dist}
66
Summary: Tools to interact with YubiHSM 2
77

@@ -76,5 +76,5 @@ install -m 0644 ../LICENSE %{buildroot}/%{_prefix}/share/licenses/%{name}
7676

7777

7878
%changelog
79-
* Wed Dec 1 2021 Aveen Ismail <aveen.ismail@yubico.com> - 2.3.0
80-
- Releasing version 2.3.0
79+
* Wed Oct 30 2023 Aveen Ismail <aveen.ismail@yubico.com> - 2.4.2
80+
- Releasing version 2.4.2

resources/release/win/yubihsm-shell_x64.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
3-
<?define ProductVersion="2.4.1" ?>
3+
<?define ProductVersion="2.4.2" ?>
44
<?define ProductName="YubiHSM Shell (x64)" ?>
55

66
<Product Id="*" UpgradeCode="af3c0c04-a974-4077-a29f-7651b546d770" Name="$(var.ProductName)" Version="$(var.ProductVersion)" Manufacturer="Yubico AB" Language="1033">

resources/release/win/yubihsm-shell_x86.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
3-
<?define ProductVersion="2.4.1" ?>
3+
<?define ProductVersion="2.4.2" ?>
44
<?define ProductName="YubHSM Shell (x86)" ?>
55

66
<Product Id="*" UpgradeCode="41fa903d-bdde-4dee-84bd-6dcf71a37acd" Name="$(var.ProductName)" Version="$(var.ProductVersion)" Manufacturer="Yubico AB" Language="1033">

0 commit comments

Comments
 (0)