summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.openstack.org>2018-01-23 16:38:58 +0000
committerGerrit Code Review <review@openstack.org>2018-01-23 16:38:58 +0000
commited73aadf19feb1279b653721ef42c65016edae52 (patch)
treeab81ea0f9a88c5852f1e48a61951d00bd3f24e32
parentb16b3694cfec8615b3b5ec14923eefc1234e8e34 (diff)
parent4e94fe53618638c37285d61c322b663192678bfb (diff)
downloadpython-novaclient-ed73aadf19feb1279b653721ef42c65016edae52.tar.gz
Merge "Add support for microversion 2.60 - volume multiattach"10.1.0
-rw-r--r--novaclient/__init__.py2
-rw-r--r--novaclient/tests/unit/v2/test_shell.py1
2 files changed, 2 insertions, 1 deletions
diff --git a/novaclient/__init__.py b/novaclient/__init__.py
index 3392aabc..c114e5b9 100644
--- a/novaclient/__init__.py
+++ b/novaclient/__init__.py
@@ -25,4 +25,4 @@ API_MIN_VERSION = api_versions.APIVersion("2.1")
# when client supported the max version, and bumped sequentially, otherwise
# the client may break due to server side new version may include some
# backward incompatible change.
-API_MAX_VERSION = api_versions.APIVersion("2.59")
+API_MAX_VERSION = api_versions.APIVersion("2.60")
diff --git a/novaclient/tests/unit/v2/test_shell.py b/novaclient/tests/unit/v2/test_shell.py
index bba9f753..34c6717b 100644
--- a/novaclient/tests/unit/v2/test_shell.py
+++ b/novaclient/tests/unit/v2/test_shell.py
@@ -3310,6 +3310,7 @@ class ShellTest(utils.TestCase):
52, # There are no version-wrapped shell method changes for this.
54, # There are no version-wrapped shell method changes for this.
57, # There are no version-wrapped shell method changes for this.
+ 60, # There are no client-side changes for volume multiattach.
])
versions_supported = set(range(0,
novaclient.API_MAX_VERSION.ver_minor + 1))