blob: 18d38f6ad24c119a995e79164b33b316ed579ae5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package version
import (
"github.com/blang/semver"
)
// Version is the version of the build.
// NOTE: remember to bump the version at the top
// of the top-level README.md file when this is
// bumped.
var Version = semver.MustParse("3.0.1")
// APIVersion is the version for the remote
// client API. It is used to determine compatibility
// between a remote podman client and its backend
var APIVersion = semver.MustParse("3.0.0")
|