Skip to content

Commit

Permalink
Drop support for Go versions older than 1.10 (#361)
Browse files Browse the repository at this point in the history
* Drop support for Go versions older than 1.10
* Remove 1.18 from test suite
  • Loading branch information
mwoss committed Apr 5, 2024
1 parent 0e69d5c commit ed8f76e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion go.mod
@@ -1,3 +1,3 @@
module github.com/shopspring/decimal

go 1.7
go 1.10

0 comments on commit ed8f76e

Please sign in to comment.