diff options
author | Matthew Heon <matthew.heon@pm.me> | 2021-02-01 10:54:44 -0500 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-02-04 16:42:29 -0500 |
commit | 002f2aca70ec66ce988816317e151d3078348a5c (patch) | |
tree | 02ebfc7ac86ec97b57386cbe4575fa90c9fcc1cd /pkg/api/handlers/utils/handler.go | |
parent | 20183349fd2c6a9a569c6c79234af48bb5d92ff7 (diff) | |
download | podman-002f2aca70ec66ce988816317e151d3078348a5c.tar.gz podman-002f2aca70ec66ce988816317e151d3078348a5c.tar.bz2 podman-002f2aca70ec66ce988816317e151d3078348a5c.zip |
Bump remote API version to 3.0.0
Fixes #9175
Signed-off-by: Matthew Heon <matthew.heon@pm.me>
Diffstat (limited to 'pkg/api/handlers/utils/handler.go')
-rw-r--r-- | pkg/api/handlers/utils/handler.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/api/handlers/utils/handler.go b/pkg/api/handlers/utils/handler.go index 517dccad0..4bab1c93f 100644 --- a/pkg/api/handlers/utils/handler.go +++ b/pkg/api/handlers/utils/handler.go @@ -43,8 +43,8 @@ var ( // clients to shop for the Version they wish to support APIVersion = map[VersionTree]map[VersionLevel]semver.Version{ LibpodTree: { - CurrentAPIVersion: semver.MustParse("2.0.0"), - MinimalAPIVersion: semver.MustParse("2.0.0"), + CurrentAPIVersion: semver.MustParse("3.0.0"), + MinimalAPIVersion: semver.MustParse("3.0.0"), }, CompatTree: { CurrentAPIVersion: semver.MustParse("1.40.0"), |