From abcfe6e87be93e962305205241af8bdceb4ea016 Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Mon, 1 Dec 2025 17:17:17 +0100 Subject: [PATCH] Upgrade to v7.0 Signed-off-by: Pol Henarejos --- build_pico_fido.sh | 4 ++-- src/fido/version.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build_pico_fido.sh b/build_pico_fido.sh index 6a85586..46266fc 100755 --- a/build_pico_fido.sh +++ b/build_pico_fido.sh @@ -1,7 +1,7 @@ #!/bin/bash -VERSION_MAJOR="6" -VERSION_MINOR="6" +VERSION_MAJOR="7" +VERSION_MINOR="0" NO_EDDSA=0 SUFFIX="${VERSION_MAJOR}.${VERSION_MINOR}" #if ! [[ -z "${GITHUB_SHA}" ]]; then diff --git a/src/fido/version.h b/src/fido/version.h index b02293c..7417630 100644 --- a/src/fido/version.h +++ b/src/fido/version.h @@ -18,7 +18,7 @@ #ifndef __VERSION_H_ #define __VERSION_H_ -#define PICO_FIDO_VERSION 0x0606 +#define PICO_FIDO_VERSION 0x0700 #define PICO_FIDO_VERSION_MAJOR ((PICO_FIDO_VERSION >> 8) & 0xff) #define PICO_FIDO_VERSION_MINOR (PICO_FIDO_VERSION & 0xff)