summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean McGinnis <sean.mcginnis@gmail.com>2019-04-17 10:11:36 -0500
committerSean McGinnis <sean.mcginnis@gmail.com>2019-05-09 14:34:46 -0500
commit953243daa9034e2a37114864cf0ac0b273cd0fc0 (patch)
treec4661b2b9d3fd374632973efe75a0b32e914ad32
parent0f013f80034542341a251e866b1692ee49d022b2 (diff)
downloadpython-cinderclient-4.2.0.tar.gz
Raise API max version for Stein updates4.2.0
Functionality was added during stein, but the MAX_VERSION of the client was not updated for these versions. This raises the version to support the added functionality. 3.57 - Improve volume transfer records - no client changes 3.58 - Add project_id to group - no client changes 3.59 is not included here as that adds sort and pagination that will need to be slightly reworked before we expose it. Change-Id: If8a3b88b9a2811ae6681e52dbca62b906d3542eb Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com> (cherry picked from commit eae7d55a07c7d1237614e65a6c32a8c6608318ff)
-rw-r--r--cinderclient/api_versions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cinderclient/api_versions.py b/cinderclient/api_versions.py
index 647ff2f..474bdfb 100644
--- a/cinderclient/api_versions.py
+++ b/cinderclient/api_versions.py
@@ -29,7 +29,7 @@ LOG = logging.getLogger(__name__)
# key is a deprecated version and value is an alternative version.
DEPRECATED_VERSIONS = {"1": "2"}
DEPRECATED_VERSION = "2.0"
-MAX_VERSION = "3.56"
+MAX_VERSION = "3.58"
MIN_VERSION = "3.0"
_SUBSTITUTIONS = {}