From 7d6c8b640f2e90cf2347fb46ef4cf46cd3280015 Mon Sep 17 00:00:00 2001 From: Brendan Burns Date: Fri, 25 Sep 2015 16:40:56 -0700 Subject: [PATCH] Kubernetes version v1.1.0 --- pkg/version/base.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/version/base.go b/pkg/version/base.go index b055bed4deeac..c7603e8bb367a 100644 --- a/pkg/version/base.go +++ b/pkg/version/base.go @@ -39,8 +39,8 @@ var ( // them irrelevant. (Next we'll take it out, which may muck with // scripts consuming the kubectl version output - but most of // these should be looking at gitVersion already anyways.) - gitMajor string = "" // major version, always numeric - gitMinor string = "" // minor version, numeric possibly followed by "+" + gitMajor string = "1" // major version, always numeric + gitMinor string = "1.0" // minor version, numeric possibly followed by "+" // semantic version, dervied by build scripts (see // https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/design/versioning.md @@ -51,7 +51,7 @@ var ( // semantic version is a git hash, but the version itself is no // longer the direct output of "git describe", but a slight // translation to be semver compliant. - gitVersion string = "v0.0.0-master+$Format:%h$" + gitVersion string = "v1.1.0-release-1.1+$Format:%h$" gitCommit string = "$Format:%H$" // sha1 from git, output of $(git rev-parse HEAD) gitTreeState string = "not a git tree" // state of git tree, either "clean" or "dirty" )