From 76fe6fc01d5ded29c65b5fe486fd3c619c01017a Mon Sep 17 00:00:00 2001 From: John Griffith Date: Fri, 1 Dec 2017 18:35:45 +0000 Subject: [PATCH] Bump Max API version to 3.48 In order for Nova to be able to make use of the code for shared_targets that has gone into Cinder we need to bump to API Version to 3.48. This bumps to 3.48 to match the latest add to the Cinder side: https://review.openstack.org/#/c/524697/1 Change-Id: Icaa17654bd2810098d02f8074fedb35c5221cd55 --- cinderclient/api_versions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinderclient/api_versions.py b/cinderclient/api_versions.py index 141ce60d7..a622d9c05 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.47" +MAX_VERSION = "3.48" MIN_VERSION = "3.0" _SUBSTITUTIONS = {}