From 822038aba29219e2fb48376a3ca2c1eb1af03059 Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Mon, 5 Jan 2026 19:53:41 +0100 Subject: [PATCH] Upgrade to v4.2 Signed-off-by: Pol Henarejos --- build_pico_openpgp.sh | 2 +- src/openpgp/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build_pico_openpgp.sh b/build_pico_openpgp.sh index cec7ce5..7c83974 100755 --- a/build_pico_openpgp.sh +++ b/build_pico_openpgp.sh @@ -1,7 +1,7 @@ #!/bin/bash VERSION_MAJOR="4" -VERSION_MINOR="0" +VERSION_MINOR="2" SUFFIX="${VERSION_MAJOR}.${VERSION_MINOR}" #if ! [[ -z "${GITHUB_SHA}" ]]; then # SUFFIX="${SUFFIX}.${GITHUB_SHA}" diff --git a/src/openpgp/version.h b/src/openpgp/version.h index dfbdd33..408a907 100644 --- a/src/openpgp/version.h +++ b/src/openpgp/version.h @@ -29,7 +29,7 @@ #define PIV_VERSION_MINOR (PIV_VERSION & 0xff) -#define PIPGP_VERSION 0x0400 +#define PIPGP_VERSION 0x0402 #define PIPGP_VERSION_MAJOR ((PIPGP_VERSION >> 8) & 0xff) #define PIPGP_VERSION_MINOR (PIPGP_VERSION & 0xff)