From a0abb3815755d6a77eed2d07bb0aa7d255e4e769 Mon Sep 17 00:00:00 2001 From: Filipe Brandenburger Date: Mon, 8 Sep 2014 16:15:58 -0700 Subject: [PATCH] Release Kubernetes v0.2 This commit will be tagged with a v0.2 annotated git tag. Tested: - Created a git tag for it, built it and checked output of -version: $ git tag -a -m 'Release Kubernetes v0.2' v0.2 $ make hack/build-go.sh Building local go components $ _output/go/bin/kubecfg -version Kubernetes version 0.2, build b47f9af5c9ea770973be1b001adaffbdfcb08618 $ _output/go/bin/kubecfg -version=raw version.Info{Major:"0", Minor:"2", GitVersion:"v0.2", GitCommit:"b47f9af5c9ea770973be1b001adaffbdfcb08618", GitTreeState:"clean"} - Made sure hack/test-go.sh and hack/test-cmd.sh still pass. Fixes: Issue #1018 Signed-off-by: Filipe Brandenburger --- 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 184b011c816ad..6ea631cf9433c 100644 --- a/pkg/version/base.go +++ b/pkg/version/base.go @@ -34,8 +34,8 @@ package version var ( gitMajor string = "0" // major version, always numeric - gitMinor string = "1+" // minor version, numeric possibly followed by "+" - gitVersion string = "v0.1+" // version from git, output of $(git describe) + gitMinor string = "2+" // minor version, numeric possibly followed by "+" + gitVersion string = "v0.2+" // 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" )