From ed8f76e893812db0c7c5789131873a011bc1638d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Wo=C5=9B?= Date: Fri, 5 Apr 2024 21:41:05 +0200 Subject: [PATCH] Drop support for Go versions older than 1.10 (#361) * Drop support for Go versions older than 1.10 * Remove 1.18 from test suite --- .github/workflows/ci.yml | 2 +- README.md | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f77eb1..fd6c836 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go: [ '1.7.x', '1.18', '1.19', '1.20', '1.21', '1.x' ] + go: [ '1.10.x', '1.19', '1.20', '1.21', '1.22', '1.x' ] name: Go ${{ matrix.go }} steps: - uses: actions/checkout@v4 diff --git a/README.md b/README.md index 261d348..a6561ca 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Run `go get github.com/shopspring/decimal` ## Requirements -Decimal library requires Go version `>=1.7` +Decimal library requires Go version `>=1.10` ## Usage diff --git a/go.mod b/go.mod index 024d502..3d26474 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/shopspring/decimal -go 1.7 +go 1.10