Retracts tags before v1.0.0-beta.2 (#790)

Fixes #789

See https://go.dev/ref/mod#go-mod-file-retract

Signed-off-by: Adrian Cole <adrian@tetrate.io>
This commit is contained in:
Crypt Keeper
2022-09-01 07:54:25 +08:00
committed by GitHub
parent 111fdf0ea2
commit 1f4d945cb0

7
go.mod
View File

@@ -1,4 +1,9 @@
module github.com/tetratelabs/wazero
// This should be the minimum supported Go version per https://go.dev/doc/devel/release (1 version behind latest)
// This should be the minimum supported Go version per
// https://go.dev/doc/devel/release (1 version behind latest)
go 1.18
// Retract the first tag, which had the wrong naming convention. Also, retract
// the first beta as it had a memory bug and quickly fixed in v1.0.0-beta.2.
retract [v1.0.0-beta1, v1.0.0-beta.1]