This enforces that wazero will build and operate one version behind Go's support policy, making wazero's Go policy effectively three versions. This is to allow libraries with more conservative Go policies to be able to use wazero, specifically mosn is the first to need this. Signed-off-by: Adrian Cole <adrian@tetrate.io>
14 lines
293 B
Modula-2
14 lines
293 B
Modula-2
module github.com/tetratelabs/wazero
|
|
|
|
// Floor Go version of wazero (current - 2)
|
|
go 1.17
|
|
|
|
// All the beta tags are retracted and replaced with "pre" to prevent users
|
|
// from accidentally upgrading into the broken beta 1.
|
|
retract (
|
|
v1.0.0-beta1
|
|
v1.0.0-beta.3
|
|
v1.0.0-beta.2
|
|
v1.0.0-beta.1
|
|
)
|