diff options
author | Ayke van Laethem <[email protected]> | 2024-06-12 13:28:30 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-06-12 14:46:47 +0200 |
commit | 077b35e9ad030d7dcf1c35249378c5fa1608c2df (patch) | |
tree | 29ea40e0dac80ce890e743542f94e6f776830d15 /go.mod | |
parent | 880e9404177bb2dae45a4fead141e96cd4b2024a (diff) | |
download | tinygo-077b35e9ad030d7dcf1c35249378c5fa1608c2df.tar.gz tinygo-077b35e9ad030d7dcf1c35249378c5fa1608c2df.zip |
all: drop support for Go 1.18
Go 1.18 has been unsupported for quite a while now (the oldest supported
version is Go 1.21). But more importantly, the golang.org/x/tools module
now requires Go 1.19 or later. So we'll drop this older version.
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ module github.com/tinygo-org/tinygo -go 1.18 +go 1.19 require ( github.com/aykevl/go-wasm v0.0.2-0.20240312204833-50275154210c |