Skip to content

Commit 9e187b3

Browse files
committed
increment to v1.1.3
1 parent 533ba00 commit 9e187b3

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const (
2626

2727
var (
2828
// Version is the application version. It is set using the -ldflags
29-
Version = "1.1.0"
29+
Version = "1.1.3"
3030
// BuildDate is the date the application was built. It is set using the -ldflags
3131
BuildDate string
3232
// BuildEnv is the build environment. It is set using the -ldflags

reproduciblebuilds/makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This how we want to name the binary output
22
BUILDNAME=cryptopower
33

4-
VERSION="v1.0.0"
4+
VERSION="v1.1.3"
55
# dev or prod
66
BuildEnv="prod"
77

version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ const (
2525
const (
2626
AppName string = "cryptopower"
2727
AppMajor uint = 1
28-
AppMinor uint = 0
29-
AppPatch uint = 0
28+
AppMinor uint = 1
29+
AppPatch uint = 3
3030
)
3131

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

0 commit comments

Comments
 (0)