0
0
Fork 0
mirror of https://github.com/crazy-max/diun.git synced 2025-04-29 04:59:53 +00:00
crazy-max_diun/vendor/github.com/containers/image/v5/version/version.go
dependabot[bot] 4df4eb271c
chore(deps): bump github.com/containers/image/v5 from 5.33.0 to 5.33.1
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>
2025-01-16 07:05:54 +00:00

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)