File tree 2 files changed +6
-6
lines changed
staging/src/k8s.io/client-go/pkg/version
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 39
39
// them irrelevant. (Next we'll take it out, which may muck with
40
40
// scripts consuming the kubectl version output - but most of
41
41
// these should be looking at gitVersion already anyways.)
42
- gitMajor string = "1" // major version, always numeric
43
- gitMinor string = "7+ " // minor version, numeric possibly followed by "+"
42
+ gitMajor string = "1" // major version, always numeric
43
+ gitMinor string = "7" // minor version, numeric possibly followed by "+"
44
44
45
45
// semantic version, derived by build scripts (see
46
46
// https://github.com/kubernetes/kubernetes/blob/master/docs/design/versioning.md
51
51
// semantic version is a git hash, but the version itself is no
52
52
// longer the direct output of "git describe", but a slight
53
53
// translation to be semver compliant.
54
- gitVersion string = "v1.7.3-beta.0 +$Format:%h$"
54
+ gitVersion string = "v1.7.3+$Format:%h$"
55
55
gitCommit string = "$Format:%H$" // sha1 from git, output of $(git rev-parse HEAD)
56
56
gitTreeState string = "not a git tree" // state of git tree, either "clean" or "dirty"
57
57
Original file line number Diff line number Diff line change 39
39
// them irrelevant. (Next we'll take it out, which may muck with
40
40
// scripts consuming the kubectl version output - but most of
41
41
// these should be looking at gitVersion already anyways.)
42
- gitMajor string = "1" // major version, always numeric
43
- gitMinor string = "7+ " // minor version, numeric possibly followed by "+"
42
+ gitMajor string = "1" // major version, always numeric
43
+ gitMinor string = "7" // minor version, numeric possibly followed by "+"
44
44
45
45
// semantic version, derived by build scripts (see
46
46
// https://github.com/kubernetes/kubernetes/blob/master/docs/design/versioning.md
51
51
// semantic version is a git hash, but the version itself is no
52
52
// longer the direct output of "git describe", but a slight
53
53
// translation to be semver compliant.
54
- gitVersion string = "v1.7.3-beta.0 +$Format:%h$"
54
+ gitVersion string = "v1.7.3+$Format:%h$"
55
55
gitCommit string = "$Format:%H$" // sha1 from git, output of $(git rev-parse HEAD)
56
56
gitTreeState string = "not a git tree" // state of git tree, either "clean" or "dirty"
57
57
You can’t perform that action at this time.
0 commit comments