1
0
mirror of https://github.com/opencontainers/image-spec.git synced 2025-04-18 03:24:01 +03:00
image-spec/go.mod
Brandon Mitchell 4dcf9627be
Document Go version policy
Signed-off-by: Brandon Mitchell <git@bmitch.net>
2024-12-13 16:40:13 -05:00

13 lines
415 B
Modula-2

module github.com/opencontainers/image-spec
// The minimum Go release is only incremented when required by a feature.
// At least 3 Go releases will be supported by the spec.
// For example, updating this version to 1.19 first requires Go 1.21 to be released.
go 1.18
require (
github.com/opencontainers/go-digest v1.0.0
github.com/russross/blackfriday v1.6.0
github.com/santhosh-tekuri/jsonschema/v5 v5.3.1
)