mirror of
https://github.com/moby/moby.git
synced 2026-01-11 10:41:43 +00:00
This includes a breaking change in pids.Limit changing to a pointer. full diff: https://github.com/opencontainers/runtime-spec/compare/v1.2.1...v1.3.0 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
19 lines
532 B
Go
19 lines
532 B
Go
package specs
|
|
|
|
import "fmt"
|
|
|
|
const (
|
|
// VersionMajor is for an API incompatible changes
|
|
VersionMajor = 1
|
|
// VersionMinor is for functionality in a backwards-compatible manner
|
|
VersionMinor = 3
|
|
// VersionPatch is for backwards-compatible bug fixes
|
|
VersionPatch = 0
|
|
|
|
// VersionDev indicates development branch. Releases will be empty string.
|
|
VersionDev = ""
|
|
)
|
|
|
|
// Version is the specification version that the package types support.
|
|
var Version = fmt.Sprintf("%d.%d.%d%s", VersionMajor, VersionMinor, VersionPatch, VersionDev)
|