summaryrefslogtreecommitdiff
path: root/novaclient/__init__.py
diff options
context:
space:
mode:
authorGhanshyam Mann <gmann@ghanshyammann.com>2019-08-13 20:30:24 +0000
committerMatt Riedemann <mriedem.os@gmail.com>2019-08-20 13:08:16 +0000
commit0e873a2d5a69d559299da4c403a5c17cf8a70462 (patch)
treece93c3b52c704b8d909ca3b3729fef623b8dea7a /novaclient/__init__.py
parente281368c9679b385ecfb05737e614a05a9bab291 (diff)
downloadpython-novaclient-0e873a2d5a69d559299da4c403a5c17cf8a70462.tar.gz
Microversion 2.75 - Multiple API cleanup changes
Add support microversion 2.75 which implement multiple API cleanup changes. 1. Making server representation always consistent among all APIs returning the complete server representation. - Test cases added. 2. Change the default return value of ``swap`` field from the empty string to 0 (integer) in flavor APIs. - Test cases added. Nova side path: https://review.opendev.org/#/c/666889/ Change-Id: Iec2cfc629dffd53178ef88a31fcd16a3f32e2e27 Partial-Implements: blueprint api-consistency-cleanup
Diffstat (limited to 'novaclient/__init__.py')
-rw-r--r--novaclient/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/novaclient/__init__.py b/novaclient/__init__.py
index fb9a485e..fc031f18 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.74")
+API_MAX_VERSION = api_versions.APIVersion("2.75")