summaryrefslogtreecommitdiff
path: root/version/version.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-09-21 13:23:20 +0000
committerGitHub <noreply@github.com>2020-09-21 13:23:20 +0000
commit0a46b9c9e6aab2a5255914b285ae5b3cddb2aa5b (patch)
tree41f8c9bb5802aff0b6482f67477a255308e7bc8b /version/version.go
parent84c87fc7d3315ffcc44dde2469a613cb9b5c4190 (diff)
parentc4b49afad37b4e64a1aa2b90f4d3b04626fabd44 (diff)
downloadpodman-0a46b9c9e6aab2a5255914b285ae5b3cddb2aa5b.tar.gz
podman-0a46b9c9e6aab2a5255914b285ae5b3cddb2aa5b.tar.bz2
podman-0a46b9c9e6aab2a5255914b285ae5b3cddb2aa5b.zip
Merge pull request #7696 from jwhonce/wip/version
Refactor version handling in cmd tree
Diffstat (limited to 'version/version.go')
-rw-r--r--version/version.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/version/version.go b/version/version.go
index 2e1335d2d..df2e4f2ba 100644
--- a/version/version.go
+++ b/version/version.go
@@ -1,12 +1,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.
-const Version = "2.1.0-dev"
+var Version = semver.MustParse("2.1.0-dev")
// APIVersion is the version for the remote
// client API. It is used to determine compatibility
// between a remote podman client and its backend
-const APIVersion = 1
+var APIVersion = semver.MustParse("2.0.0")