summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZuul <zuul@review.opendev.org>2020-04-10 22:53:29 +0000
committerGerrit Code Review <review@openstack.org>2020-04-10 22:53:29 +0000
commit3ef5b695ca600748d5c78bff6fd4eb9d6dac8599 (patch)
tree8f79631a56f62033b95d53557e4db4b081f333aa
parent9bd1c3d3217b09fa06a6af64c720955bac5ebfdb (diff)
parent7ed265bbf580cb35876738f16b1d430efd75aa2a (diff)
downloadpython-novaclient-3ef5b695ca600748d5c78bff6fd4eb9d6dac8599.tar.gz
Merge "Microversion 2.87 - Stable device boot from volume rescue"17.0.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 878cb9a2..0b29e4f1 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.86")
+API_MAX_VERSION = api_versions.APIVersion("2.87")
diff --git a/novaclient/tests/unit/v2/test_shell.py b/novaclient/tests/unit/v2/test_shell.py
index 21c72840..adec6a4d 100644
--- a/novaclient/tests/unit/v2/test_shell.py
+++ b/novaclient/tests/unit/v2/test_shell.py
@@ -4550,6 +4550,7 @@ class ShellTest(utils.TestCase):
83, # There are no version-wrapped shell method changes for this.
84, # There are no version-wrapped shell method changes for this.
86, # doesn't require any changes in novaclient.
+ 87, # doesn't require any changes in novaclient.
])
versions_supported = set(range(0,
novaclient.API_MAX_VERSION.ver_minor + 1))