Skip to content

Commit

Permalink
Drop support for Go < 1.19.
Browse files Browse the repository at this point in the history
Certain core library features such as atomic int64, any, tls
NetConn and other minute detail things that our dependencies
now rely on are entirely missing from older Go version. Since I do
not like to run downgrades, drop the older Go versions instead.
  • Loading branch information
icedream committed Mar 15, 2024
1 parent c67f3fc commit 10d26e5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ jobs:
strategy:
matrix:
goversion:
- '1.17'
- '1.18'
- '1.19'
- '1.20'
- '1.21'
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/icedream/go-stagelinq

go 1.17
go 1.19

require (
github.com/stretchr/testify v1.9.0
Expand Down

0 comments on commit 10d26e5

Please sign in to comment.