Version pump to v_0.1.1

This commit is contained in:
AnilChinchawale 2019-02-12 04:55:48 +05:30
parent d2722ff048
commit 947db22dfa
2 changed files with 5 additions and 4 deletions

1
VERSION Normal file
View file

@ -0,0 +1 @@
0.1.1

View file

@ -21,10 +21,10 @@ import (
)
const (
VersionMajor = 1 // Major version component of the current release
VersionMinor = 1 // Minor version component of the current release
VersionPatch = 3 // Patch version component of the current release
VersionMeta = "stable" // Version metadata to append to the version string
VersionMajor = 0 // Major version component of the current release
VersionMinor = 1 // Minor version component of the current release
VersionPatch = 1 // Patch version component of the current release
VersionMeta = "unstable" // Version metadata to append to the version string
)
// Version holds the textual version string.