mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
98e23f2a8e
Signed-off-by: Derek McGowan <derek@mcgstyle.net>
18 lines
536 B
Go
18 lines
536 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 = 0
|
|
// VersionPatch is for backwards-compatible bug fixes
|
|
VersionPatch = 1
|
|
|
|
// VersionDev indicates development branch. Releases will be empty string.
|
|
VersionDev = "-dev"
|
|
)
|
|
|
|
// Version is the specification version that the package types support.
|
|
var Version = fmt.Sprintf("%d.%d.%d%s", VersionMajor, VersionMinor, VersionPatch, VersionDev)
|