Skip to content

Commit bd041f0

Browse files
committedMay 24, 2024··
Require Go 1.19
This is what Debian 12 ships, so is probably a decent baseline for now. Rewriting things for Go 1.18 is too much work.
1 parent 5269073 commit bd041f0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"test": {
66
"strategy": {
77
"matrix": {
8-
"go-version": ["1.18.x", "1.21.x"],
8+
"go-version": ["1.19.x", "1.22.x"],
99
"os": ["ubuntu-latest", "macos-latest", "windows-latest"]
1010
}
1111
},

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ should run in most environments. It's recommended you use a binary, or a tagged
2727
release if you build from source especially in CI environments. This prevents
2828
your tests from breaking on changes to tests in this tool.
2929

30-
To compile from source you will need Go 1.18 or newer:
30+
To compile from source you will need Go 1.19 or newer:
3131

3232
% go install github.com/toml-lang/toml-test/cmd/toml-test@latest
3333

‎go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/toml-lang/toml-test
22

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/BurntSushi/toml v1.4.0

0 commit comments

Comments
 (0)
Please sign in to comment.