Kubernetes version v1.0.3

This commit is contained in:
Brendan Burns
2015-08-06 21:56:59 -07:00
parent 4475a2ae8e
commit 61c6ac5f35

View File

@@ -40,7 +40,7 @@ var (
// scripts consuming the kubectl version output - but most of
// these should be looking at gitVersion already anyways.)
gitMajor string = "1" // major version, always numeric
gitMinor string = "0.2" // minor version, numeric possibly followed by "+"
gitMinor string = "0.3" // 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 = "v1.0.2-release-1.0+$Format:%h$"
gitVersion string = "v1.0.3-release-1.0+$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"
)