diff options
author | Jhon Honce <jhonce@redhat.com> | 2020-09-18 14:10:14 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2020-09-18 15:13:58 -0700 |
commit | c4b49afad37b4e64a1aa2b90f4d3b04626fabd44 (patch) | |
tree | 12ea0c158c3d51c3ed571706f22668ba48474d1d /version/version.go | |
parent | 5b7509c562e040ab8ed17990299c0b6eb52cecee (diff) | |
download | podman-c4b49afad37b4e64a1aa2b90f4d3b04626fabd44.tar.gz podman-c4b49afad37b4e64a1aa2b90f4d3b04626fabd44.tar.bz2 podman-c4b49afad37b4e64a1aa2b90f4d3b04626fabd44.zip |
Refactor version handling in cmd tree
* Move from simple string to semver objects
* Change client API Version from '1' to 2.0.0
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'version/version.go')
-rw-r--r-- | version/version.go | 8 |
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") |