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

Use Go 1.16 for darwin/arm64 architecture support #288

Merged
merged 3 commits into from
Mar 31, 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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test_results_dir: &test_results_dir /tmp/test_results
jobs:
run-tests:
docker:
- image: docker.mirror.hashicorp.services/circleci/golang:1.14.10
- image: docker.mirror.hashicorp.services/circleci/golang:1.16.2
environment:
TF_ACC_TERRAFORM_VERSION: 0.12.29
TEST_RESULTS_DIR: *test_results_dir
Expand Down
2 changes: 1 addition & 1 deletion .go-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.14.10
1.16.2
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
- docker
language: go
go:
- "1.14.10"
- "1.16.x"

install:
# This script is used by the Travis build to install a cookie for
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Unreleased 0.24.1

ENANCEMENTS:
* Use Go 1.16 to provide support for Apple Silicon (darwin/arm64).

## 0.24.0 (January 22, 2021)

BREAKING CHANGES:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ You might prefer to manually build the provider yourself - perhaps access to the
release binaries on [releases.hashicorp.com](https://releases.hashicorp.com/terraform-provider-tfe/) are not available
in your operating environment, or you're looking to contribute to the provider and are testing out a custom build.

Building the provider requires [Go](https://golang.org/doc/install) >= 1.14
Building the provider requires [Go](https://golang.org/doc/install) >= 1.16

Clone the repository, enter the directory, and build the provider:

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hashicorp/terraform-provider-tfe

go 1.14
go 1.16

require (
github.com/hashicorp/go-tfe v0.12.0
Expand Down