github.com/containers/podman/v2@v2.2.2-0.20210501105131-c1e07d070c4c/version/version.go (about) 1 package version 2 3 import ( 4 "github.com/blang/semver" 5 ) 6 7 // Version is the version of the build. 8 // NOTE: remember to bump the version at the top 9 // of the top-level README.md file when this is 10 // bumped. 11 var Version = semver.MustParse("2.2.1") 12 13 // APIVersion is the version for the remote 14 // client API. It is used to determine compatibility 15 // between a remote podman client and its backend 16 var APIVersion = semver.MustParse("2.1.0")