Skip to content

Commit ed8f76e

Browse files
authored
Drop support for Go versions older than 1.10 (shopspring#361)
* Drop support for Go versions older than 1.10 * Remove 1.18 from test suite
1 parent 0e69d5c commit ed8f76e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
go: [ '1.7.x', '1.18', '1.19', '1.20', '1.21', '1.x' ]
12+
go: [ '1.10.x', '1.19', '1.20', '1.21', '1.22', '1.x' ]
1313
name: Go ${{ matrix.go }}
1414
steps:
1515
- uses: actions/checkout@v4

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Run `go get github.com/shopspring/decimal`
2222

2323
## Requirements
2424

25-
Decimal library requires Go version `>=1.7`
25+
Decimal library requires Go version `>=1.10`
2626

2727
## Usage
2828

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/shopspring/decimal
22

3-
go 1.7
3+
go 1.10

0 commit comments

Comments
 (0)