From e78cc205143f739d14476d61b2bffa7d78eca30d Mon Sep 17 00:00:00 2001 From: Timofey Durakov Date: Mon, 4 Jul 2016 12:15:12 +0300 Subject: [PATCH] Added support for microversion 2.34 microversion support added Change-Id: I5743ad049c413e3ebe3ef816ee1ad2c26cc5cc2d bp: async-live-migration-rest-check Depends-On: #I9fed3079d0f1b7de3ad1b3ecd309c93785fd11fe --- novaclient/__init__.py | 2 +- novaclient/tests/unit/v2/test_shell.py | 1 + releasenotes/notes/microversion-v2_34-a9c5601811152964.yaml | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/microversion-v2_34-a9c5601811152964.yaml diff --git a/novaclient/__init__.py b/novaclient/__init__.py index ad6d401ec..76a83fa75 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.33") +API_MAX_VERSION = api_versions.APIVersion("2.34") diff --git a/novaclient/tests/unit/v2/test_shell.py b/novaclient/tests/unit/v2/test_shell.py index eda8d101c..4fcd295b4 100644 --- a/novaclient/tests/unit/v2/test_shell.py +++ b/novaclient/tests/unit/v2/test_shell.py @@ -2929,6 +2929,7 @@ class ShellTest(utils.TestCase): 31, # doesn't require any changes in novaclient 32, # doesn't require separate version-wrapped methods in # novaclient + 34, # doesn't require any changes in novaclient ]) versions_supported = set(range(0, novaclient.API_MAX_VERSION.ver_minor + 1)) diff --git a/releasenotes/notes/microversion-v2_34-a9c5601811152964.yaml b/releasenotes/notes/microversion-v2_34-a9c5601811152964.yaml new file mode 100644 index 000000000..284b01eb4 --- /dev/null +++ b/releasenotes/notes/microversion-v2_34-a9c5601811152964.yaml @@ -0,0 +1,3 @@ +--- +upgrade: + - Support for microversion 2.34 added. \ No newline at end of file