Files
podman/version/version.go
Valentin Rothberg ef02a06216 [v3.0.1] set version to v3.0.1
The v3.0.1 branch included the bump to v3.0.2-dev which indicates the
state in between two releases.

Fixes: bugzilla.redhat.com/show_bug.cgi?id=1966538
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
2021-06-01 13:18:23 +02:00

17 lines
436 B
Go

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")