diff options
author | Takashi Natsume <takanattie@gmail.com> | 2020-03-12 23:34:44 +0900 |
---|---|---|
committer | Takashi Natsume <takanattie@gmail.com> | 2020-03-12 23:49:23 +0900 |
commit | 0ab746b4d12f469484c30cd11095a79135bac63b (patch) | |
tree | d3930c1086fb5ce22eb4ebd4fd1876354797729e /novaclient | |
parent | 03dca4bc823c82054869dfaf6925d5e1e068ac51 (diff) | |
download | python-novaclient-0ab746b4d12f469484c30cd11095a79135bac63b.tar.gz |
Microversion 2.82 - nova cyborg interaction
This patch adds support for microversion 2.82
"Define Cyborg ARQ binding notification event" (*).
*: I7a626544d8221dc0eeb5672986ca897ce4718be8
No changes are required in the novaclient side,
so just increment the microversion.
Change-Id: I3a8a2f8b5ced5519082f0b7609702d4f62be88ac
Implements: blueprint nova-cyborg-interaction
Diffstat (limited to 'novaclient')
-rw-r--r-- | novaclient/__init__.py | 2 | ||||
-rw-r--r-- | novaclient/tests/unit/v2/test_shell.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/novaclient/__init__.py b/novaclient/__init__.py index 6855e2f2..773a4b70 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.81") +API_MAX_VERSION = api_versions.APIVersion("2.82") diff --git a/novaclient/tests/unit/v2/test_shell.py b/novaclient/tests/unit/v2/test_shell.py index 2473061d..dcd48707 100644 --- a/novaclient/tests/unit/v2/test_shell.py +++ b/novaclient/tests/unit/v2/test_shell.py @@ -4458,6 +4458,7 @@ class ShellTest(utils.TestCase): 75, # There are no version-wrapped shell method changes for this. 76, # doesn't require any changes in novaclient. 77, # There are no version-wrapped shell method changes for this. + 82, # doesn't require any changes in novaclient. ]) versions_supported = set(range(0, novaclient.API_MAX_VERSION.ver_minor + 1)) |