Skip to content

Commit be19a02

Browse files
Merge pull request #1220 from allmightyspiff/v5.8.5
v5.8.5
2 parents 5f44bad + d4de69f commit be19a02

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,25 @@
11
# Change Log
22

33

4-
## [5.8.5] - 2019-12-20
4+
## [5.8.5] - 2012-01-29
5+
https://github.com/softlayer/softlayer-python/compare/v5.8.4...v5.8.5
6+
7+
- #1195 Fixed an issue with `slcli vs dns-sync --ptr`. Added `slcli hw dns-sync`
8+
- #1199 Fix File Storage failback and failover.
9+
- #1198 Fix issue where the summary command fails due to None being provided as the datacenter name.
10+
- #1208 Added The following commands:
11+
- `slcli block volume-limits`
12+
- `slcli file volume-limits`
13+
- #1209 Add testing/CI for python 3.8.
14+
- #1212 Fix vs detail erroring on servers pending cancellation.
15+
- #1210 support subnet ACL management through cli
16+
+ `slcli block subnets-list`
17+
+ `slcli block subnets-assign`
18+
+ `slcli block subnets-remove`
19+
- #1215 Added documentation for all SLCLI commands.
20+
21+
22+
## [5.8.4] - 2019-12-20
523
https://github.com/softlayer/softlayer-python/compare/v5.8.3...v5.8.4
624

725
- #1199 Fix block storage failback and failover.

SoftLayer/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
:license: MIT, see LICENSE for more details.
77
"""
8-
VERSION = 'v5.8.4'
8+
VERSION = 'v5.8.5'
99
API_PUBLIC_ENDPOINT = 'https://api.softlayer.com/xmlrpc/v3.1/'
1010
API_PRIVATE_ENDPOINT = 'https://api.service.softlayer.com/xmlrpc/v3.1/'
1111
API_PUBLIC_ENDPOINT_REST = 'https://api.softlayer.com/rest/v3.1/'

docs/cli/block.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,16 @@ Block Commands
110110
.. click:: SoftLayer.CLI.block.limit:cli
111111
:prog: block volume-limits
112112
:show-nested:
113+
114+
115+
.. click:: SoftLayer.CLI.block.subnets.list:cli
116+
:prog: block subnets-list
117+
:show-nested:
118+
119+
.. click:: SoftLayer.CLI.block.subnets.assign:cli
120+
:prog: block subnets-assign
121+
:show-nested:
122+
123+
.. click:: SoftLayer.CLI.block.subnets.remove:cli
124+
:prog: block subnets-remove
125+
:show-nested:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setup(
1616
name='SoftLayer',
17-
version='5.8.4',
17+
version='5.8.5',
1818
description=DESCRIPTION,
1919
long_description=LONG_DESCRIPTION,
2020
author='SoftLayer Technologies, Inc.',

0 commit comments

Comments
 (0)