From 7ddc8dfc74028291a1ddc98c46121efd4aaacf5a Mon Sep 17 00:00:00 2001 From: Kennedy Izuegbu Date: Thu, 24 Oct 2024 12:16:31 +0100 Subject: [PATCH] increment app version to v2.0.2 (#682) --- 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 0f913ebf0..afbf9a143 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.1" + Version = "2.0.2" // 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 c2221baaa..3f1b7d1bd 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.1" +VERSION="v2.0.2" # dev or prod BuildEnv="prod" diff --git a/version/version.go b/version/version.go index 882240493..41ad0b1c8 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 = 1 + AppPatch uint = 2 ) // 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`"