diff options
author | Paul Holzinger <pholzing@redhat.com> | 2022-03-29 19:00:46 +0200 |
---|---|---|
committer | Paul Holzinger <pholzing@redhat.com> | 2022-04-27 14:32:28 +0200 |
commit | 609b52f7266dc057ec356348e54e501225715c4d (patch) | |
tree | 65c5f279f6a0e7ef05bcde22c16403defedc2223 /version | |
parent | 053b09660ffbe2df2104186c67e39be70764ff63 (diff) | |
download | podman-609b52f7266dc057ec356348e54e501225715c4d.tar.gz podman-609b52f7266dc057ec356348e54e501225715c4d.tar.bz2 podman-609b52f7266dc057ec356348e54e501225715c4d.zip |
Bump version to v4.1.0-dev
I think we forgot to bump the version in the main branch. It should be
v4.1.0-dev now.
Also set the min api version to 4.0.0 as on the podman 4.0 branch.
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'version')
-rw-r--r-- | version/version.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/version/version.go b/version/version.go index c6bd2c239..5b2ca0d74 100644 --- a/version/version.go +++ b/version/version.go @@ -27,7 +27,7 @@ const ( // NOTE: remember to bump the version at the top // of the top-level README.md file when this is // bumped. -var Version = semver.MustParse("4.0.0-dev") +var Version = semver.MustParse("4.1.0-dev") // See https://docs.docker.com/engine/api/v1.40/ // libpod compat handlers are expected to honor docker API versions @@ -38,7 +38,7 @@ var Version = semver.MustParse("4.0.0-dev") var APIVersion = map[Tree]map[Level]semver.Version{ Libpod: { CurrentAPI: Version, - MinimalAPI: semver.MustParse("3.1.0"), + MinimalAPI: semver.MustParse("4.0.0"), }, Compat: { CurrentAPI: semver.MustParse("1.40.0"), |