Skip to content

Commit 55908db

Browse files
authored
Merge pull request #141 from lightninglabs/0.4.0-rc1.beta
version: bump version to 0.4.0-rc1.beta
2 parents 37a245a + cb533d5 commit 55908db

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

version.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
2222
// versioning 2.0.0 spec (http://semver.org/).
2323
const (
2424
appMajor uint = 0
25-
appMinor uint = 3
26-
appPatch uint = 1
25+
appMinor uint = 4
26+
appPatch uint = 0
2727

2828
// appPreRelease MUST only contain characters from semanticAlphabet per
2929
// the semantic versioning spec.
30-
appPreRelease = "alpha"
30+
appPreRelease = "rc1.beta"
3131
)
3232

3333
// Version returns the application version as a properly formed string per the

0 commit comments

Comments
 (0)