Skip to content

Commit

Permalink
Require Go 1.19
Browse files Browse the repository at this point in the history
This is what Debian 12 ships, so is probably a decent baseline for now.

Rewriting things for Go 1.18 is too much work.
  • Loading branch information
arp242 committed May 24, 2024
1 parent 5269073 commit bd041f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"test": {
"strategy": {
"matrix": {
"go-version": ["1.18.x", "1.21.x"],
"go-version": ["1.19.x", "1.22.x"],
"os": ["ubuntu-latest", "macos-latest", "windows-latest"]
}
},
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ should run in most environments. It's recommended you use a binary, or a tagged
release if you build from source especially in CI environments. This prevents
your tests from breaking on changes to tests in this tool.

To compile from source you will need Go 1.18 or newer:
To compile from source you will need Go 1.19 or newer:

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

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/toml-lang/toml-test

go 1.18
go 1.19

require (
github.com/BurntSushi/toml v1.4.0
Expand Down

0 comments on commit bd041f0

Please sign in to comment.