summaryrefslogtreecommitdiff
path: root/cinderclient
diff options
context:
space:
mode:
authorSean McGinnis <sean.mcginnis@gmail.com>2019-04-17 09:28:50 -0500
committerSean McGinnis <sean.mcginnis@gmail.com>2019-04-17 09:36:55 -0500
commitb843a168efc9261a12ebe322fe701ef355474874 (patch)
tree7f6441699b780a9f86cb0131c7b92d89beff5b95 /cinderclient
parent15295acb074a778674f2b92f45f8dd1e7ff5f60c (diff)
downloadpython-cinderclient-b843a168efc9261a12ebe322fe701ef355474874.tar.gz
Raise API max version for Rocky updates
Functionality was added during rocky, but the MAX_VERSION of the client was not updated for these versions. This raises the version to support the added functionality. 3.53 - Schema validation - no client changes 3.54 - Add mode option to attachment-create: I22cfddd0192c4a72b8f844f23d1fa51b96c57e06 3.55 - Transfer snapshots with volumes I61a84b5abf386a4073baea57d8820c8fd762ae03 Change-Id: I8c8fb8f552e529c8474a3e3b771ba8eb7aed193a Signed-off-by: Sean McGinnis <sean.mcginnis@gmail.com>
Diffstat (limited to 'cinderclient')
-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 0fcb208..cb7b54b 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.52"
+MAX_VERSION = "3.55"
MIN_VERSION = "3.0"
_SUBSTITUTIONS = {}