Skip to content

Commit

Permalink
Kubernetes version v1.6.7-beta.0 file updates
Browse files Browse the repository at this point in the history
  • Loading branch information
enisoc committed Jun 16, 2017
1 parent 7fa1c17 commit 7c3906a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion api/openapi-spec/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"swagger": "2.0",
"info": {
"title": "Kubernetes",
"version": "v1.6.6"
"version": "v1.6.7"
},
"paths": {
"/api/": {
Expand Down
2 changes: 1 addition & 1 deletion federation/apis/openapi-spec/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"swagger": "2.0",
"info": {
"title": "Generic API Server",
"version": "v1.6.6"
"version": "v1.6.7"
},
"paths": {
"/api/": {
Expand Down
6 changes: 3 additions & 3 deletions pkg/version/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "1" // major version, always numeric
gitMinor string = "6" // minor version, numeric possibly followed by "+"
gitMajor string = "1" // major version, always numeric
gitMinor string = "6+" // minor version, numeric possibly followed by "+"

// semantic version, derived by build scripts (see
// https://github.com/kubernetes/kubernetes/blob/master/docs/design/versioning.md
Expand All @@ -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.6.6+$Format:%h$"
gitVersion string = "v1.6.7-beta.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"

Expand Down
6 changes: 3 additions & 3 deletions staging/src/k8s.io/client-go/pkg/version/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "1" // major version, always numeric
gitMinor string = "6" // minor version, numeric possibly followed by "+"
gitMajor string = "1" // major version, always numeric
gitMinor string = "6+" // minor version, numeric possibly followed by "+"

// semantic version, derived by build scripts (see
// https://github.com/kubernetes/kubernetes/blob/master/docs/design/versioning.md
Expand All @@ -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.6.6+$Format:%h$"
gitVersion string = "v1.6.7-beta.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"

Expand Down

0 comments on commit 7c3906a

Please sign in to comment.