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 Dec 7, 2023
1 parent b4a24ee commit a3f649a
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/macos_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Build dist with Linux
runs-on: ubuntu-latest
env:
RELEASE_VERSION: 2.4.0
RELEASE_VERSION: 2.4.2
steps:
- name: checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
- os: macos-latest-xlarge
arch: arm
env:
RELEASE_VERSION: 2.4.0
RELEASE_VERSION: 2.4.2
SO_VERSION: 2
steps:
- name: Download source from job_1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Build dist with Linux
runs-on: ubuntu-latest
env:
RELEASE_VERSION: 2.4.0
RELEASE_VERSION: 2.4.2
steps:
- name: checkout
uses: actions/checkout@v2
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
needs: job_1
runs-on: windows-latest
env:
RELEASE_VERSION: 2.4.0
RELEASE_VERSION: 2.4.2
steps:
- name: Download source from job_1
uses: actions/download-artifact@v1
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
needs: job_1
runs-on: windows-latest
env:
RELEASE_VERSION: 2.4.0
RELEASE_VERSION: 2.4.2
steps:
- name: Download source from job_1
uses: actions/download-artifact@v1
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ project (yubico-piv-tool)

set (yubico_piv_tool_VERSION_MAJOR 2)
set (yubico_piv_tool_VERSION_MINOR 4)
set (yubico_piv_tool_VERSION_PATCH 1)
set (yubico_piv_tool_VERSION_PATCH 2)
set (VERSION "${yubico_piv_tool_VERSION_MAJOR}.${yubico_piv_tool_VERSION_MINOR}.${yubico_piv_tool_VERSION_PATCH}")
set (SO_VERSION 2)

Expand Down
4 changes: 4 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
yubico-piv-tool NEWS -- History of user-visible changes. -*- outline -*-

* Version 2.4.2 (released 2023-12-07)

** ykpiv: Fix potential type casting bug.

* Version 2.4.1 (released 2023-12-05)

** ykpiv: ykcs11: Fix building on certain architectures. Existing builds are not affected.
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
yubico-piv-tool (2.4.2) stable; urgency=medium

* ykpiv: Fix potential type casting bug.

-- Aveen Ismail <[email protected]> Thu, 7 Dec 2023 11:00:56 +0100

yubico-piv-tool (2.4.1) stable; urgency=medium

* ykpiv: ykcs11: Fix building on certain architectures. Existing builds are not affected.
Expand Down
2 changes: 1 addition & 1 deletion resources/win/yubico-piv-tool_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.0" ?>
<?define ProductVersion="2.4.2" ?>
<?define ProductName="Yubico PIV Tool (x64)" ?>

<Product Id="*" UpgradeCode="e4f980c4-5dd5-4d39-95b7-c6362ae65be8" Name="$(var.ProductName)" Version="$(var.ProductVersion)" Manufacturer="Yubico AB" Language="1033">
Expand Down
2 changes: 1 addition & 1 deletion resources/win/yubico-piv-tool_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.0" ?>
<?define ProductVersion="2.4.2" ?>
<?define ProductName="Yubico PIV Tool (x86)" ?>

<Product Id="*" UpgradeCode="1aa2f085-add9-4556-9e21-299b078e6273" Name="$(var.ProductName)" Version="$(var.ProductVersion)" Manufacturer="Yubico AB" Language="1033">
Expand Down

3 comments on commit a3f649a

@kloczek
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like git 2.4.2 version tag is mission.

@aveenismail
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Apologies. Tag pushed

@kloczek
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you 👍

Please sign in to comment.