Skip to content

Commit 5fc50ce

Browse files
authored
Merge pull request #1018 from cloudflare/cbroglie/1.3.4
Release 1.3.4
2 parents 6abac05 + 2185c18 commit 5fc50ce

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, 3, "release"}
17+
}{1, 3, 4, "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.3" {
11+
if version != "1.3.4" {
1212
t.Fatal("version string is not returned correctly")
1313
}
1414
}

0 commit comments

Comments
 (0)