Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update to Go 1.16 #147

Merged
merged 1 commit into from
Feb 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Go
uses: actions/[email protected]
with:
go-version: '1.15'
go-version: '1.16'
id: go

- name: Check out code into the Go module directory
Expand Down Expand Up @@ -53,13 +53,13 @@ jobs:
terraform:
- '0.12.30'
- '0.13.6'
- '0.14.5'
- '0.14.7'
steps:

- name: Set up Go
uses: actions/[email protected]
with:
go-version: '1.15'
go-version: '1.16'
id: go

- name: Check out code into the Go module directory
Expand Down
2 changes: 1 addition & 1 deletion .go-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.15.0
1.16.0
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.1.0 (Unreleased)

Binary releases of this provider now include the darwin-arm64 platform. This version contains no further changes.

## 3.0.1 (January 12, 2021)

BUG FIXES:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Requirements
------------

- [Terraform](https://www.terraform.io/downloads.html) 0.13.x
- [Go](https://golang.org/doc/install) 1.15 (to build the provider plugin)
- [Go](https://golang.org/doc/install) 1.16 (to build the provider plugin)

Building The Provider
---------------------
Expand All @@ -29,7 +29,7 @@ $ make build
Developing the Provider
---------------------------

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

To generate the documentation, run `go generate` in the root of the codebase.

Expand Down