diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ff0afc50..444c459cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,25 @@ # Change Log -## [5.8.5] - 2019-12-20 +## [5.8.5] - 2012-01-29 +https://github.com/softlayer/softlayer-python/compare/v5.8.4...v5.8.5 + +- #1195 Fixed an issue with `slcli vs dns-sync --ptr`. Added `slcli hw dns-sync` +- #1199 Fix File Storage failback and failover. +- #1198 Fix issue where the summary command fails due to None being provided as the datacenter name. +- #1208 Added The following commands: + - `slcli block volume-limits` + - `slcli file volume-limits` +- #1209 Add testing/CI for python 3.8. +- #1212 Fix vs detail erroring on servers pending cancellation. +- #1210 support subnet ACL management through cli + + `slcli block subnets-list` + + `slcli block subnets-assign` + + `slcli block subnets-remove` +- #1215 Added documentation for all SLCLI commands. + + +## [5.8.4] - 2019-12-20 https://github.com/softlayer/softlayer-python/compare/v5.8.3...v5.8.4 - #1199 Fix block storage failback and failover. diff --git a/SoftLayer/consts.py b/SoftLayer/consts.py index 89bcf5187..8bb1585fd 100644 --- a/SoftLayer/consts.py +++ b/SoftLayer/consts.py @@ -5,7 +5,7 @@ :license: MIT, see LICENSE for more details. """ -VERSION = 'v5.8.4' +VERSION = 'v5.8.5' 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/cli/block.rst b/docs/cli/block.rst index 5ca8140b7..851d7d84c 100644 --- a/docs/cli/block.rst +++ b/docs/cli/block.rst @@ -110,3 +110,16 @@ Block Commands .. click:: SoftLayer.CLI.block.limit:cli :prog: block volume-limits :show-nested: + + +.. click:: SoftLayer.CLI.block.subnets.list:cli + :prog: block subnets-list + :show-nested: + +.. click:: SoftLayer.CLI.block.subnets.assign:cli + :prog: block subnets-assign + :show-nested: + +.. click:: SoftLayer.CLI.block.subnets.remove:cli + :prog: block subnets-remove + :show-nested: diff --git a/setup.py b/setup.py index 65b1d5c44..b88b324c0 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='SoftLayer', - version='5.8.4', + version='5.8.5', description=DESCRIPTION, long_description=LONG_DESCRIPTION, author='SoftLayer Technologies, Inc.',