Skip to content

Commit

Permalink
Merge pull request #567 from cloudflare/nick/1.2
Browse files Browse the repository at this point in the history
Bump version to 1.2
  • Loading branch information
kisom committed Mar 30, 2016
2 parents 92f037e + 8fca731 commit db0d065
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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, 1, 0, "release"}
}{1, 2, 0, "release"}

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

func TestVersionString(t *testing.T) {
version := versionString()
if version != "1.1.0" {
t.Fatal("verstion string is not returned correctly")
if version != "1.2.0" {
t.Fatal("version string is not returned correctly")
}
}

Expand Down

0 comments on commit db0d065

Please sign in to comment.