Merge pull request #4226 from dnephin/update-api-version-for-v3

Increase minimum version for compose format v3
This commit is contained in:
Aanand Prasad 2016-12-07 16:59:28 +00:00 committed by GitHub
commit 30eac9f1ae
3 changed files with 15 additions and 14 deletions

View file

@ -23,12 +23,12 @@ API_VERSIONS = {
COMPOSEFILE_V1: '1.21',
COMPOSEFILE_V2_0: '1.22',
COMPOSEFILE_V2_1: '1.24',
COMPOSEFILE_V3_0: '1.24',
COMPOSEFILE_V3_0: '1.25',
}
API_VERSION_TO_ENGINE_VERSION = {
API_VERSIONS[COMPOSEFILE_V1]: '1.9.0',
API_VERSIONS[COMPOSEFILE_V2_0]: '1.10.0',
API_VERSIONS[COMPOSEFILE_V2_1]: '1.12.0',
API_VERSIONS[COMPOSEFILE_V3_0]: '1.12.0',
API_VERSIONS[COMPOSEFILE_V3_0]: '1.13.0',
}