Skip to content

Commit

Permalink
feat: bump Go to 1.20 to resolve MacOS DNS resolution issues (#342)
Browse files Browse the repository at this point in the history
* feat: bump the go version

Bumping the go version ensures that MacOS DNS is resolved correctly as
per https://go-review.googlesource.com/c/go/+/446178.

Resolves: #341

* bump go version in /tools and in readme

---------

Co-authored-by: Pavel Boldyrev <627562+bpg@users.noreply.github.com>
  • Loading branch information
elidhu and bpg committed May 19, 2023
1 parent 0d8e6d3 commit 1c920de
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
NAME=terraform-provider-proxmox
TARGETS=darwin linux windows
TERRAFORM_PLUGIN_EXTENSION=
VERSION=0.19.1# x-release-please-version
VERSION=0.19.2# x-release-please-version

ifeq ($(OS),Windows_NT)
TERRAFORM_PLATFORM=windows_amd64
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ other enhancements.
## Requirements

- [Terraform](https://www.terraform.io/downloads.html) 1.2+
- [Go](https://golang.org/doc/install) 1.19+ (to build the provider plugin)
- [Go](https://golang.org/doc/install) 1.20+ (to build the provider plugin)
- [GoReleaser](https://goreleaser.com/install/) v1.15+ (to build the provider plugin)

## Table of Contents
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/bpg/terraform-provider-proxmox

go 1.19
go 1.20

require (
github.com/google/go-querystring v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/golang-templates/seed/build

go 1.19
go 1.20

require (
github.com/golangci/golangci-lint v1.52.2
Expand Down

0 comments on commit 1c920de

Please sign in to comment.