summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Bishop <abishop@redhat.com>2022-08-09 13:51:16 -0700
committerAlan Bishop <abishop@redhat.com>2022-08-09 13:54:04 -0700
commit730a8c7728a8481d4c74e4c93b2619025f7267ea (patch)
tree9f8fc7b58e6ae4371d4d198fc207a5088a9b4b94
parent1f3b6634857e346e2be225a5552469213f329194 (diff)
downloadpython-cinderclient-730a8c7728a8481d4c74e4c93b2619025f7267ea.tar.gz
Bump API max version to 3.709.1.0
Bump MAX_VERSION to 3.70 to support the following: - 3.69 - Allow null value for shared_targets - 3.70 - Support encrypted volume transfers Implements: bp/transfer-encrypted-volume Depends-On: I459f06504e90025c9c0b539981d3d56a2a9394c7 Change-Id: I11072d6d8a185037c7f4cdd52c45933b0cccaf05
-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 dc2a88d..5f6ad65 100644
--- a/cinderclient/api_versions.py
+++ b/cinderclient/api_versions.py
@@ -26,7 +26,7 @@ LOG = logging.getLogger(__name__)
# key is unsupported version, value is appropriate supported alternative
REPLACEMENT_VERSIONS = {"1": "3", "2": "3"}
-MAX_VERSION = "3.68"
+MAX_VERSION = "3.70"
MIN_VERSION = "3.0"
_SUBSTITUTIONS = {}