From b413c5e59197f85ddca4a23cb810663bdddbea12 Mon Sep 17 00:00:00 2001 From: Sergio Carlos Morales Angeles Date: Fri, 4 Aug 2017 14:28:05 -0500 Subject: [PATCH] Version bump to v5.2.11 --- CHANGELOG.md | 12 ++++++++++-- SoftLayer/consts.py | 2 +- docs/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb7c8602c..52dc29045 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,21 @@ # Change Log +## [5.2.11] - 2017-08-04 + - Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.10...master + - Sync VLAN and subnet detail CLI output + +## [5.2.10] - 2017-07-27 + - Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.9...v5.2.10 + - Avoid blindly passing memory result to formatter + ## [5.2.9] - 2017-07-27 - - Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.8...master + - Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.8...v5.2.9 - Add support for dedicated host instances to virtual server upgrades #### Added to CLI * block volume-set-lun-id ## [5.2.8] - 2017-07-19 - - Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.7...master + - Changes: https://github.com/softlayer/softlayer-python/compare/v5.2.7...v5.2.8 * Resolved https://github.com/softlayer/softlayer-python/issues/835 * Resolved https://github.com/softlayer/softlayer-python/issues/826 diff --git a/SoftLayer/consts.py b/SoftLayer/consts.py index 7ca7e7871..b44a583ed 100644 --- a/SoftLayer/consts.py +++ b/SoftLayer/consts.py @@ -5,7 +5,7 @@ :license: MIT, see LICENSE for more details. """ -VERSION = 'v5.2.9' +VERSION = 'v5.2.11' API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3.1/' API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3.1/' API_PUBLIC_ENDPOINT_REST = 'https://api.softlayer.com/rest/v3.1/' diff --git a/docs/conf.py b/docs/conf.py index 7c50b6c88..3bcd7aee3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '5.2.9' +version = '5.2.11' # The full version, including alpha/beta/rc tags. -release = '5.2.9' +release = '5.2.11' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 2e8db359a..5958a5738 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='SoftLayer', - version='5.2.9', + version='5.2.11', description=DESCRIPTION, long_description=LONG_DESCRIPTION, author='SoftLayer Technologies, Inc.',