From 529a4921263f73a70e3c07a8a50fd08cc82c450b Mon Sep 17 00:00:00 2001 From: Andrey Kurilin Date: Thu, 3 Dec 2015 19:26:08 +0200 Subject: [PATCH] [microversions] Increase max version to 2.11 2.11 - Exposed attribute forced_down for os-services. Added ability to change the forced_down attribute by calling an update. This microversion was previously added in [1], but since the support for 2.6-2.10 microversion was missed, the max version was decreased to 2.5[2]. Now, support is added for all microversion 2.1-2.10, so we can enable 2.11 microversion. [1] - I2b80ac32a95fe80363b4ad95d8d89fff097935a3 [2] - I52074f9a3e7faa6a7a51c3fa9766100acf25dee2 & Iba9bfa136245bd2899c427ac0c231a30c00bd7f3 Change-Id: Iab3224a5c3691437e64ab4e06c85ccc2a7deea13 --- novaclient/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/novaclient/__init__.py b/novaclient/__init__.py index 37c73086a..f34afe6b4 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.10") +API_MAX_VERSION = api_versions.APIVersion("2.11")