From 86298f3421f71530ba564b19447ce83349d59b01 Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Tue, 19 Apr 2022 19:24:10 +0200 Subject: [PATCH] Upgrading to version 2.0. --- build_pico_hsm.sh | 4 ++-- patch_vidpid.sh | 4 ++-- src/hsm/version.h | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) 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)