Skip to content

Commit 768cd56

Browse files
committed
Release 1.3.3
1 parent f0ca6c1 commit 768cd56

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ var version = struct {
1414
Minor int
1515
Patch int
1616
Revision string
17-
}{1, 3, 2, "release"}
17+
}{1, 3, 3, "release"}
1818

1919
func versionString() string {
2020
return fmt.Sprintf("%d.%d.%d", version.Major, version.Minor, version.Patch)

cli/version/version_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
func TestVersionString(t *testing.T) {
1010
version := versionString()
11-
if version != "1.3.2" {
11+
if version != "1.3.3" {
1212
t.Fatal("version string is not returned correctly")
1313
}
1414
}

0 commit comments

Comments
 (0)