Skip to content

Commit ce0deb0

Browse files
committed
build: bump version to v0.14.0-alpha.rc1
1 parent 079b1d9 commit ce0deb0

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 = 13
26-
appPatch uint = 0
25+
appMinor uint = 14
26+
appPatch uint = 1
2727

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

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

0 commit comments

Comments
 (0)