mirror of
https://github.com/crazy-max/diun.git
synced 2025-04-29 04:59:53 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/containers/image/v5](https://github.com/containers/image) from 5.33.0 to 5.33.1. - [Release notes](https://github.com/containers/image/releases) - [Commits](https://github.com/containers/image/compare/v5.33.0...v5.33.1) --- updated-dependencies: - dependency-name: github.com/containers/image/v5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
18 lines
535 B
Go
18 lines
535 B
Go
package version
|
|
|
|
import "fmt"
|
|
|
|
const (
|
|
// VersionMajor is for an API incompatible changes
|
|
VersionMajor = 5
|
|
// VersionMinor is for functionality in a backwards-compatible manner
|
|
VersionMinor = 33
|
|
// VersionPatch is for backwards-compatible bug fixes
|
|
VersionPatch = 1
|
|
|
|
// 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)
|