diff --git a/build_pico_hsm.sh b/build_pico_hsm.sh index 43e1542..62ad4d2 100755 --- a/build_pico_hsm.sh +++ b/build_pico_hsm.sh @@ -1,7 +1,7 @@ #!/bin/bash -VERSION_MAJOR="1" -VERSION_MINOR="12" +VERSION_MAJOR="2" +VERSION_MINOR="0" rm -rf release/* cd build_release diff --git a/patch_vidpid.sh b/patch_vidpid.sh index df149d8..60a81fb 100755 --- a/patch_vidpid.sh +++ b/patch_vidpid.sh @@ -17,8 +17,8 @@ # along with this program. If not, see . # -VERSION_MAJOR="1" -VERSION_MINOR="0C" +VERSION_MAJOR="2" +VERSION_MINOR="0" echo "----------------------------" echo "VID/PID patcher for Pico HSM" diff --git a/src/hsm/version.h b/src/hsm/version.h index 59582c6..f074940 100644 --- a/src/hsm/version.h +++ b/src/hsm/version.h @@ -18,7 +18,7 @@ #ifndef __VERSION_H_ #define __VERSION_H_ -#define HSM_VERSION 0x010C +#define HSM_VERSION 0x0200 #define HSM_VERSION_MAJOR ((HSM_VERSION >> 8) & 0xff) #define HSM_VERSION_MINOR (HSM_VERSION & 0xff)