We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86e93f4 commit 27f1223Copy full SHA for 27f1223
1 file changed
cmd/version.go
@@ -43,14 +43,14 @@ func (v Version) String() string {
43
// CurrentVersion represents the current build version.
44
// This should be the only one.
45
var CurrentVersion = Version{
46
- Number: 0.1,
47
- PatchVersion: 0,
48
- Suffix: "-DEV",
+ Number: 1,
+ PatchVersion: 2,
+ Suffix: "",
49
}
50
51
func version(version float32, patchVersion int, suffix string) string {
52
if patchVersion > 0 {
53
- return fmt.Sprintf("%.2f.%d%s", version, patchVersion, suffix)
+ return fmt.Sprintf("%.1f.%d%s", version, patchVersion, suffix)
54
55
return fmt.Sprintf("%.2f%s", version, suffix)
56
0 commit comments