From 6f986af0d4ff7471c470c86036d0a01b9b692340 Mon Sep 17 00:00:00 2001 From: Pete Davison Date: Fri, 11 Aug 2023 22:46:37 +0100 Subject: [PATCH] feat: bump minimum go version to 1.20 (#1302) --- .github/workflows/test.yml | 2 +- CHANGELOG.md | 1 + go.mod | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9eea5fa7..f8bcb94e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: name: Test strategy: matrix: - go-version: [1.19.x, 1.20.x] + go-version: [1.20.x, 1.21.x] platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{matrix.platform}} steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index fbaed186..e4877766 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## Unreleased +- Update to Go 1.21 (bump minimum version to 1.20) (#1302 by @pd93) - Fix a missing a line break on log when using `--watch` mode (#1285, #1297 by @FilipSolich). - Fix `defer` on JSON Schema (#1288 by @calvinmclean and @andreynering). diff --git a/go.mod b/go.mod index bae3589a..25ec44a9 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/go-task/task/v3 -go 1.19 +go 1.20 require ( github.com/Masterminds/semver/v3 v3.2.1