From b4abd14249ef865d92dbd2d341fe5d0aa22e781b Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Tue, 9 Aug 2022 08:21:50 -0700 Subject: [PATCH 1/2] Add support for Go 1.19 --- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 5 +++++ README.md | 5 +++++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index da3fcf1b71f..8ed8e96605a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,7 +109,7 @@ jobs: compatibility-test: strategy: matrix: - go-version: [1.18, 1.17] + go-version: [1.19, 1.18, 1.17] os: [ubuntu-latest, macos-latest, windows-latest] # GitHub Actions does not support arm* architectures on default # runners. It is possible to acomplish this with a self-hosted runner diff --git a/CHANGELOG.md b/CHANGELOG.md index c9f73af32b6..737d3fc3abf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +### Added + +- Support Go 1.19. + Include compatibility testing and document support. (#TBD) + ## [1.9.0/0.0.3] - 2022-08-01 ### Added diff --git a/README.md b/README.md index c87f800b948..3c1e6c1e3c9 100644 --- a/README.md +++ b/README.md @@ -41,14 +41,19 @@ This project is tested on the following systems. | OS | Go Version | Architecture | | ------- | ---------- | ------------ | +| Ubuntu | 1.19 | amd64 | | Ubuntu | 1.18 | amd64 | | Ubuntu | 1.17 | amd64 | +| Ubuntu | 1.19 | 386 | | Ubuntu | 1.18 | 386 | | Ubuntu | 1.17 | 386 | +| MacOS | 1.19 | amd64 | | MacOS | 1.18 | amd64 | | MacOS | 1.17 | amd64 | +| Windows | 1.19 | amd64 | | Windows | 1.18 | amd64 | | Windows | 1.17 | amd64 | +| Windows | 1.19 | 386 | | Windows | 1.18 | 386 | | Windows | 1.17 | 386 | From 6a1657c3303a28cf426ff025dfbce4316a2807d0 Mon Sep 17 00:00:00 2001 From: Tyler Yahn Date: Tue, 9 Aug 2022 10:03:05 -0700 Subject: [PATCH 2/2] Update CHANGELOG.md Co-authored-by: Sam Xie --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 737d3fc3abf..a28332f3fbc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### Added - Support Go 1.19. - Include compatibility testing and document support. (#TBD) + Include compatibility testing and document support. (#3077) ## [1.9.0/0.0.3] - 2022-08-01