From e5834ff7c4f9fae7f72828b56c32b4e4549ff7f6 Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Wed, 7 Dec 2022 11:07:43 +0100 Subject: [PATCH] Upgrading to v2.6 Signed-off-by: Pol Henarejos --- build_pico_fido.sh | 2 +- src/fido/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build_pico_fido.sh b/build_pico_fido.sh index 45e5e2e..9a67f1d 100755 --- a/build_pico_fido.sh +++ b/build_pico_fido.sh @@ -1,7 +1,7 @@ #!/bin/bash VERSION_MAJOR="2" -VERSION_MINOR="4" +VERSION_MINOR="6" rm -rf release/* cd build_release diff --git a/src/fido/version.h b/src/fido/version.h index d37cb46..432e026 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 0x0204 +#define PICO_FIDO_VERSION 0x0206 #define PICO_FIDO_VERSION_MAJOR ((PICO_FIDO_VERSION >> 8) & 0xff) #define PICO_FIDO_VERSION_MINOR (PICO_FIDO_VERSION & 0xff)