From 75fe41b622ab868daf014ef6259bb06f6e17f88c Mon Sep 17 00:00:00 2001 From: Brendan Burns Date: Wed, 3 Jun 2015 10:46:08 -0700 Subject: [PATCH] Manually fix up 0.18.1 (not sure what went wrong) --- pkg/version/base.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/version/base.go b/pkg/version/base.go index b434f8b7ea4..11f57fbdc03 100644 --- a/pkg/version/base.go +++ b/pkg/version/base.go @@ -36,8 +36,8 @@ package version var ( // TODO: Deprecate gitMajor and gitMinor, use only gitVersion instead. gitMajor string = "0" // major version, always numeric - gitMinor string = "18.0+" // minor version, numeric possibly followed by "+" - gitVersion string = "v0.18.0-dev" // version from git, output of $(git describe) + gitMinor string = "18.1+" // minor version, numeric possibly followed by "+" + gitVersion string = "v0.18.1-dev" // version from git, output of $(git describe) gitCommit string = "" // sha1 from git, output of $(git rev-parse HEAD) gitTreeState string = "not a git tree" // state of git tree, either "clean" or "dirty" )