diff --git a/main.go b/main.go index afbf9a143..7982d370d 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.1.0" // 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..f0c9722a4 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.1.0" # dev or prod BuildEnv="prod" diff --git a/version/version.go b/version/version.go index 41ad0b1c8..48228709e 100644 --- a/version/version.go +++ b/version/version.go @@ -25,8 +25,8 @@ const ( const ( AppName string = "cryptopower" AppMajor uint = 2 - AppMinor uint = 0 - AppPatch uint = 2 + AppMinor uint = 1 + AppPatch uint = 0 ) // 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`"