Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

increment app version to 2.0.3 #708

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion reproduciblebuilds/makefile
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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`"
Expand Down
Loading