Skip to content

Commit

Permalink
Prepare 2.4.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
aveenismail committed Oct 30, 2023
1 parent 801415b commit 379359d
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Build dist with Linux
runs-on: ubuntu-latest
env:
VERSION: 2.4.1
VERSION: 2.4.2
steps:
- name: checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
- os: windows-latest
arch: x64
env:
VERSION: 2.4.1
VERSION: 2.4.2
steps:
- name: Download source from source job
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
- os: macos-latest-xlarge
arch: arm
env:
VERSION: 2.4.1
VERSION: 2.4.2
SO_VERSION: 2
steps:
- name: Download source from source job
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
=== Version 2.4.1

PKCS11: Add Symmetric key capabilities to searchable criteria
PKCS11: Add support for CKA_KEY_TYPE when searching for objects
PKCS11: Add support for CKA_MODIFIABLE and CKA_COPYABLE attributes for AES and Wrap keys
Test: Increase test coverage

=== Version 2.4.1

pkcs11: Security update for https://www.yubico.com/support/security-advisories/ysa-2023-01/[YSA-2023-01]
pkcs11: Allow only a user with access to all the object's domains to edit its attributes
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.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ endif ()

set (yubihsm_shell_VERSION_MAJOR 2)
set (yubihsm_shell_VERSION_MINOR 4)
set (yubihsm_shell_VERSION_PATCH 1)
set (yubihsm_shell_VERSION_PATCH 2)
set (VERSION "${yubihsm_shell_VERSION_MAJOR}.${yubihsm_shell_VERSION_MINOR}.${yubihsm_shell_VERSION_PATCH}")

if (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
Expand Down
9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
yubihsm-shell (2.4.2) unstable; urgency=medium

* pkcs11: Add Symmetric key capabilities to searchable criteria
* pkcs11: Add support for CKA_KEY_TYPE when searching for objects
* pkcs11: Add support for CKA_MODIFIABLE and CKA_COPYABLE attributes for AES and Wrap keys
* test: Increase test coverage

-- Aveen Ismail <[email protected]> Mon, 30 Oct 2023 14:55:20 +0100

yubihsm-shell (2.4.1) unstable; urgency=medium

* pkcs11: Allow only a user with access to all the object's domains to edit its attributes
Expand Down
6 changes: 3 additions & 3 deletions resources/release/linux/yubihsm-shell.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%global _yubihsm yubihsm

Name: yubihsm-shell
Version: 2.4.1
Version: 2.4.2
Release: 1%{?dist}
Summary: Tools to interact with YubiHSM 2

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


%changelog
* Wed Dec 1 2021 Aveen Ismail <[email protected]> - 2.3.0
- Releasing version 2.3.0
* Wed Oct 30 2023 Aveen Ismail <[email protected]> - 2.4.2
- Releasing version 2.4.2
2 changes: 1 addition & 1 deletion resources/release/win/yubihsm-shell_x64.wxs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<?define ProductVersion="2.4.1" ?>
<?define ProductVersion="2.4.2" ?>
<?define ProductName="YubiHSM Shell (x64)" ?>

<Product Id="*" UpgradeCode="af3c0c04-a974-4077-a29f-7651b546d770" Name="$(var.ProductName)" Version="$(var.ProductVersion)" Manufacturer="Yubico AB" Language="1033">
Expand Down
2 changes: 1 addition & 1 deletion resources/release/win/yubihsm-shell_x86.wxs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<?define ProductVersion="2.4.1" ?>
<?define ProductVersion="2.4.2" ?>
<?define ProductName="YubHSM Shell (x86)" ?>

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

0 comments on commit 379359d

Please sign in to comment.