Skip to content

Commit 3d43932

Browse files
authored
Update go versions used in development (#2934)
Adding `.x` to Travis means use the latest minor version according to its docs. I didn't update the "Requirements" header because this is just because of Go Modules; see #2932 for why. Since it's just a development change, it doesn't impact _using_ the provider. Although, out of curiosity- is that header for development? Or is there a real requirement to have Go installed to use Terraform providers?
1 parent bb5e348 commit 3d43932

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ services:
44
- docker
55
language: go
66
go:
7-
- "1.11"
7+
- "1.11.x"
88

99
install:
1010
# This script is used by the Travis build to install a cookie for

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ $ make build
6363
Developing the provider
6464
---------------------------
6565

66-
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.11+ is *required*). You'll also need to correctly setup a [GOPATH](http://golang.org/doc/code.html#GOPATH), as well as adding `$GOPATH/bin` to your `$PATH`.
66+
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.11.4+ is *required*). You'll also need to correctly setup a [GOPATH](http://golang.org/doc/code.html#GOPATH), as well as adding `$GOPATH/bin` to your `$PATH`.
6767

6868
To compile the provider, run `make build`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.
6969

0 commit comments

Comments
 (0)