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)