Skip to content

Commit

Permalink
Merge pull request #1018 from cloudflare/cbroglie/1.3.4
Browse files Browse the repository at this point in the history
Release 1.3.4
  • Loading branch information
cbroglie authored Jul 16, 2019
2 parents 6abac05 + 2185c18 commit 5fc50ce
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, 3, "release"}
}{1, 3, 4, "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.3" {
if version != "1.3.4" {
t.Fatal("version string is not returned correctly")
}
}
Expand Down

0 comments on commit 5fc50ce

Please sign in to comment.