mirror of
https://github.com/containers/skopeo.git
synced 2025-08-24 09:08:31 +00:00
Bumps [github.com/containers/common](https://github.com/containers/common) from 0.15.1 to 0.15.2. - [Release notes](https://github.com/containers/common/releases) - [Commits](https://github.com/containers/common/compare/v0.15.1...v0.15.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
19 lines
536 B
Go
19 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 = 2
|
|
|
|
// 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)
|