Skip to content

Commit

Permalink
Release 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cbroglie committed Apr 9, 2019
1 parent f0ca6c1 commit 768cd56
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ var version = struct {
Minor int
Patch int
Revision string
}{1, 3, 2, "release"}
}{1, 3, 3, "release"}

func versionString() string {
return fmt.Sprintf("%d.%d.%d", version.Major, version.Minor, version.Patch)
Expand Down
2 changes: 1 addition & 1 deletion cli/version/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

func TestVersionString(t *testing.T) {
version := versionString()
if version != "1.3.2" {
if version != "1.3.3" {
t.Fatal("version string is not returned correctly")
}
}
Expand Down

0 comments on commit 768cd56

Please sign in to comment.