Skip to content

Commit

Permalink
Release 1.3.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
kisom committed Mar 23, 2018
1 parent 142cc3d commit 5d63dbd
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, 0, "release"}
}{1, 3, 2, "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.0" {
if version != "1.3.2" {
t.Fatal("version string is not returned correctly")
}
}
Expand Down

0 comments on commit 5d63dbd

Please sign in to comment.