Skip to content

Commit b859ebf

Browse files
committed
Documentation/development: Bump minimum Go version to 1.10
This gets us a fixed 'CGO_ENABLED=0 go install' [1,2] and avoids 1.8 (which is no longer supported upstream now that 1.10 has been released [3]). I've also dropped the version information from the build comment (it's mentioned just before in the "Requirements" section) to DRY things up a bit. [1]: golang/go#18981 [2]: golang/go@8f70e1f8a91 [3]: https://golang.org/doc/devel/release.html#policy
1 parent bff16e2 commit b859ebf

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ before_script:
44
- unzip terraform_0.11.3_linux_amd64.zip
55
- export PATH=$PWD:$PATH
66
go:
7-
- 1.9.x
87
- 1.10.x
98
script:
109
- make clean release

Documentation/development.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Requirements
44

5-
* Go 1.8+
5+
* Go 1.10+
66
* Configured [GOPATH](http://golang.org/doc/code.html#GOPATH)
77

88
## Building
@@ -14,7 +14,7 @@ go get -u github.com/kubernetes-incubator/bootkube
1414
cd $GOPATH/src/github.com/kubernetes-incubator/bootkube
1515
```
1616

17-
Then, to build (only Go verson 1.8 is supported now):
17+
Then build:
1818

1919
```
2020
make clean all

0 commit comments

Comments
 (0)