summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2016-01-21 17:23:06 +0000
committerGerrit Code Review <review@openstack.org>2016-01-21 17:23:06 +0000
commit44edba9e1c7d5bf7a378a525c6d63519fc39f9c7 (patch)
treeb0bacf9270cfc4f7975efe505cb79cdf804b90d7
parent8165c771ae4d043a5f0476cc51f2cbccba91788a (diff)
parent48605fcb430126dc9b80dc73311d8dbc4e2ce801 (diff)
downloadpython-novaclient-44edba9e1c7d5bf7a378a525c6d63519fc39f9c7.tar.gz
Merge "Added support for Nova microversion 2.16"
-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 84c17c97..c4d263ed 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.15")
+API_MAX_VERSION = api_versions.APIVersion("2.16")
diff --git a/novaclient/tests/unit/v2/test_shell.py b/novaclient/tests/unit/v2/test_shell.py
index 0d53645c..b058a043 100644
--- a/novaclient/tests/unit/v2/test_shell.py
+++ b/novaclient/tests/unit/v2/test_shell.py
@@ -2611,6 +2611,7 @@ class ShellTest(utils.TestCase):
# TODO(andreykurilin): remove 12 when 1522424 will be resolved
12, # doesn't require any changes in novaclient
15, # doesn't require any changes in novaclient
+ 16, # doesn't require any changes in novaclient
])
versions_supported = set(range(0,
novaclient.API_MAX_VERSION.ver_minor + 1))