diff --git a/CHANGELOG.md b/CHANGELOG.md index ca8587ad8..95510b227 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,15 @@ # Change Log +## [5.4.2] - 2018-02-22 + - Changes: https://github.com/softlayer/softlayer-python/compare/v5.4.1...master + +- add GPU to the virtual create-options table +- Remove 'virtual' from the hardware ready command. +- Carefully check for the metric tracking id on virtual guests when building a bandwidth report. +- Do not fail if the source or destination subnet mask does not exist for ipv6 rules. + ## [5.4.1] - 2018-02-05 - - Changes: https://github.com/softlayer/softlayer-python/compare/v5.4.0...master + - Changes: https://github.com/softlayer/softlayer-python/compare/v5.4.0...v5.4.1 - Improve error conditions when adding SSH keys - added type filters to package-list, auto-removes bluemix_services on package listing diff --git a/SoftLayer/consts.py b/SoftLayer/consts.py index e6d0336aa..3b609301c 100644 --- a/SoftLayer/consts.py +++ b/SoftLayer/consts.py @@ -5,7 +5,7 @@ :license: MIT, see LICENSE for more details. """ -VERSION = 'v5.4.1' +VERSION = 'v5.4.2' 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/setup.py b/setup.py index 4852ee6d1..a3f35fd96 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='SoftLayer', - version='5.4.1', + version='5.4.2', description=DESCRIPTION, long_description=LONG_DESCRIPTION, author='SoftLayer Technologies, Inc.',