summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-02-19 20:26:07 +0000
committerGerrit Code Review <review@openstack.org>2016-02-19 20:26:07 +0000
commita89384c20a95b653d9b10203ddc17d8c007ceb9c (patch)
treea5a156bbf6b7eafc062e2a2d6138619779097626
parent083ce7eeeada3e4d73c55e4e2d7239febb3993f6 (diff)
parentf279b086d78eaf84d6225aa3f4366f9c908d4f23 (diff)
downloadpython-novaclient-a89384c20a95b653d9b10203ddc17d8c007ceb9c.tar.gz
Merge "[microversions] Enable 2.20"
-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 e9b2a802..b9f008cc 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.19")
+API_MAX_VERSION = api_versions.APIVersion("2.20")
diff --git a/novaclient/tests/unit/v2/test_shell.py b/novaclient/tests/unit/v2/test_shell.py
index 8e110c57..eb86eee9 100644
--- a/novaclient/tests/unit/v2/test_shell.py
+++ b/novaclient/tests/unit/v2/test_shell.py
@@ -2685,6 +2685,7 @@ class ShellTest(utils.TestCase):
# (we can do it, since nova-api change didn't actually add
# new microversion, just an additional checks. See
# https://review.openstack.org/#/c/233076/ for more details)
+ 20, # doesn't require any changes in novaclient
])
versions_supported = set(range(0,
novaclient.API_MAX_VERSION.ver_minor + 1))