From 04f2d6c995681a3646e07b3c79742311c0cc03f8 Mon Sep 17 00:00:00 2001 From: Kennedy Izuegbu Date: Fri, 11 Oct 2024 20:25:47 +0100 Subject: [PATCH] increament app version to v2.0.1 (#683) --- 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 24e0c266b..0f913ebf0 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.0" + Version = "2.0.1" // 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 beaeb47cd..c2221baaa 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.0" +VERSION="v2.0.1" # dev or prod BuildEnv="prod" diff --git a/version/version.go b/version/version.go index 1e6b0f914..882240493 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 = 0 + AppPatch uint = 1 ) // 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`"