summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kolodyazhny <e0ne@e0ne.info>2020-07-24 23:31:52 +0300
committerIvan Kolodyazhny <e0ne@e0ne.info>2020-07-24 23:31:52 +0300
commita9e9b762fd71eec44a5d8f72c50daa2238b2c3b2 (patch)
treeccbbf7cb7fe1b863aec786f42fa7a7472dd31f1b
parentb6b308ed23b5b3d9ddd8aa946a31edec6b35cbe4 (diff)
downloadpython-cinderclient-a9e9b762fd71eec44a5d8f72c50daa2238b2c3b2.tar.gz
Add support for Cinder API mv3.61
Microversion 3.61 adds cluster_name attribute to volume details output for admin users. Change-Id: I13f85c8ddd4cb238a245c263151123fd271a9927 Depends-On: https://review.opendev.org/742991
-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 2d22199..dbd9d1e 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 = {"2": "3"}
DEPRECATED_VERSION = "2.0"
-MAX_VERSION = "3.60"
+MAX_VERSION = "3.61"
MIN_VERSION = "3.0"
_SUBSTITUTIONS = {}