From bb2615c0fd6324c6b7d116f4b9648ada0038f701 Mon Sep 17 00:00:00 2001 From: dreacot Date: Thu, 28 Nov 2024 11:39:02 +0100 Subject: [PATCH] increment app version to 2.0.3 --- main.go | 2 +- reproduciblebuilds/makefile | 2 +- version/version.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index afbf9a143..a84a14c9e 100644 --- a/main.go +++ b/main.go @@ -26,7 +26,7 @@ const ( var ( // Version is the application version. It is set using the -ldflags - Version = "2.0.2" + Version = "2.0.3" // BuildDate is the date the application was built. It is set using the -ldflags BuildDate string // BuildEnv is the build environment. It is set using the -ldflags diff --git a/reproduciblebuilds/makefile b/reproduciblebuilds/makefile index 3f1b7d1bd..068144077 100644 --- a/reproduciblebuilds/makefile +++ b/reproduciblebuilds/makefile @@ -1,7 +1,7 @@ # This how we want to name the binary output BUILDNAME=cryptopower -VERSION="v2.0.2" +VERSION="v2.0.3" # dev or prod BuildEnv="prod" diff --git a/version/version.go b/version/version.go index 41ad0b1c8..0ba779868 100644 --- a/version/version.go +++ b/version/version.go @@ -26,7 +26,7 @@ const ( AppName string = "cryptopower" AppMajor uint = 2 AppMinor uint = 0 - AppPatch uint = 2 + AppPatch uint = 3 ) // go build -v -ldflags "-X github.com/crypto-power/cryptopower/version.appPreRelease= -X github.com/crypto-power/cryptopower/version.appBuild=`git rev-parse --short HEAD`"