From 5b95e35ca9a38798cc0a90e9e295b2cba0a4c2a5 Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Sat, 20 Jul 2024 20:29:40 +0200 Subject: [PATCH] Upgrade to version 5.10 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 04945c3..ed77b99 100755 --- a/build_pico_fido.sh +++ b/build_pico_fido.sh @@ -1,7 +1,7 @@ #!/bin/bash VERSION_MAJOR="5" -VERSION_MINOR="8" +VERSION_MINOR="10" rm -rf release/* cd build_release diff --git a/src/fido/version.h b/src/fido/version.h index 789f039..d700cdf 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 0x0508 +#define PICO_FIDO_VERSION 0x050A #define PICO_FIDO_VERSION_MAJOR ((PICO_FIDO_VERSION >> 8) & 0xff) #define PICO_FIDO_VERSION_MINOR (PICO_FIDO_VERSION & 0xff)