Skip to content

Commit

Permalink
Prepare 2.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
aveenismail committed Mar 25, 2024
1 parent 5e73b19 commit 18b3dec
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Build dist with Linux
runs-on: ubuntu-latest
env:
VERSION: 2.4.2
VERSION: 2.5.0
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.2
VERSION: 2.5.0
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.2
VERSION: 2.5.0
SO_VERSION: 2
steps:
- name: Download source from source job
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG
@@ -1,3 +1,9 @@
=== Version 2.5.0

PKCS11: Add support for applying KDF after ECDH derivation
PKCS11: Shell: Fix minor bugs
Test: Increase test coverage

=== Version 2.4.2

PKCS11: Add Symmetric key capabilities to searchable criteria
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -93,8 +93,8 @@ else ()
endif ()

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

if (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
Expand Down
8 changes: 8 additions & 0 deletions debian/changelog
@@ -1,3 +1,11 @@
yubihsm-shell (2.5.0) unstable; urgency=medium

* pkcs11: Add support for applying KDF after ECDH derivation
* pkcs11: shell: Fix minor bugs
* test: Increase test coverage

-- Aveen Ismail <aveen.ismail@yubico.com> Mon, 25 Mar 2024 23:27:50 +0100

yubihsm-shell (2.4.2) unstable; urgency=medium

* pkcs11: Add Symmetric key capabilities to searchable criteria
Expand Down
4 changes: 2 additions & 2 deletions debian/libykhsmauth-dev.install
@@ -1,5 +1,5 @@
#! /usr/bin/dh-exec
usr/lib/libykhsmauth*.so /usr/lib/${DEB_HOST_MULTIARCH}
usr/share/pkgconfig/ykhsmauth.pc /usr/lib/${DEB_HOST_MULTIARCH}
usr/lib/libykhsmauth*.so /usr/lib/x86_64-linux-gnu
usr/share/pkgconfig/ykhsmauth.pc /usr/lib/x86_64-linux-gnu

usr/include/ykhsmauth.h
6 changes: 3 additions & 3 deletions resources/release/linux/yubihsm-shell.spec
@@ -1,7 +1,7 @@
%global _yubihsm yubihsm

Name: yubihsm-shell
Version: 2.4.2
Version: 2.5.0
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 Oct 30 2023 Aveen Ismail <aveen.ismail@yubico.com> - 2.4.2
- Releasing version 2.4.2
* Wed Mar 27 2024 Aveen Ismail <aveen.ismail@yubico.com> - 2.5.0
- Releasing version 2.5.0
2 changes: 1 addition & 1 deletion resources/release/win/yubihsm-shell_x64.wxs
@@ -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.2" ?>
<?define ProductVersion="2.5.0" ?>
<?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
@@ -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.2" ?>
<?define ProductVersion="2.5.0" ?>
<?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 18b3dec

Please sign in to comment.