diff options
author | Bence Ferdinandy <bence@ferdinandy.com> | 2024-07-11 11:34:19 +0200 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2024-08-20 11:52:25 +0200 |
commit | 5d56a6fc75e8104e222a912caee61b1f0376b556 (patch) | |
tree | 88e2765ed4d8b684a5c278d010546c5ab820148d /go.mod | |
parent | a890fcb435e223897e9cacd92fc95673af45fb81 (diff) | |
download | aerc-5d56a6fc75e8104e222a912caee61b1f0376b556.tar.gz |
go: bump minimal version to 1.21 and handle deprecations
Go 1.18 is already EOL. go-maildir v0.5.0 requires go 1.20 at least.
Since go 1.20 is also EOL, bump the minimum required go version to the
first still supported version which is 1.21.
Go 1.20 deprecated Seed and Read in math/rand. Update the code
accordingly.
Changelog-deprecated: Support for go 1.20 and older.
Signed-off-by: Bence Ferdinandy <bence@ferdinandy.com>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ module git.sr.ht/~rjarry/aerc -go 1.18 +go 1.21 require ( git.sr.ht/~rjarry/go-opt v1.4.0 |