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`"