Skip to content

Commit 86c6301

Browse files
authored
update to Go 1.16 (hashicorp#66)
1 parent 7bcb9e5 commit 86c6301

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Go
2323
uses: actions/[email protected]
2424
with:
25-
go-version: '1.15'
25+
go-version: '1.16'
2626
id: go
2727

2828
- name: Check out code into the Go module directory
@@ -53,13 +53,13 @@ jobs:
5353
terraform:
5454
- '0.12.30'
5555
- '0.13.6'
56-
- '0.14.5'
56+
- '0.14.7'
5757
steps:
5858

5959
- name: Set up Go
6060
uses: actions/[email protected]
6161
with:
62-
go-version: '1.15'
62+
go-version: '1.16'
6363
id: go
6464

6565
- name: Check out code into the Go module directory

.go-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.16.0

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
## 2.1.0 (Unreleased)
2+
3+
Binary releases of this provider now include the darwin-arm64 platform. This version contains no further changes.
4+
15
## 2.0.0 (October 14, 2020)
26

3-
Binary releases of this provider will now include the linux-arm64 platform.
7+
Binary releases of this provider now include the linux-arm64 platform.
48

59
BREAKING CHANGES:
610

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ This provider plugin is maintained by the Terraform team at [HashiCorp](https://
1515
Requirements
1616
------------
1717

18-
- [Terraform](https://www.terraform.io/downloads.html) 0.10.x
19-
- [Go](https://golang.org/doc/install) 1.11 (to build the provider plugin)
18+
- [Terraform](https://www.terraform.io/downloads.html) 0.12.x
19+
- [Go](https://golang.org/doc/install) 1.16 (to build the provider plugin)
2020

2121
Building The Provider
2222
---------------------
@@ -42,7 +42,7 @@ see <https://registry.terraform.io/providers/hashicorp/http/latest/docs>
4242
Developing the Provider
4343
---------------------------
4444

45-
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`.
45+
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.16+ 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`.
4646

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

0 commit comments

Comments
 (0)