Skip to content

Commit 8a755be

Browse files
Merge pull request #1058 from allmightyspiff/master
5.6.0 release
2 parents e89c8f9 + a929d9c commit 8a755be

File tree

6 files changed

+23
-9
lines changed

6 files changed

+23
-9
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Change Log
22

3+
## [5.6.0] - 2018-10-16
4+
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.5.3...v5.6.0
5+
6+
+ #1026 Support for [Reserved Capacity](https://console.bluemix.net/docs/vsi/vsi_about_reserved.html#about-reserved-virtual-servers)
7+
* `slcli vs capacity create`
8+
* `slcli vs capacity create-guest`
9+
* `slcli vs capacity create-options`
10+
* `slcli vs capacity detail`
11+
* `slcli vs capacity list`
12+
+ #1050 Fix `post_uri` parameter name on docstring
13+
+ #1039 Fixed suspend cloud server order.
14+
+ #1055 Update to use click 7
15+
+ #1053 Add export/import capabilities to/from IBM Cloud Object Storage to the image manager as well as the slcli.
16+
317

418
## [5.5.3] - 2018-08-31
519
- Changes: https://github.com/softlayer/softlayer-python/compare/v5.5.2...v5.5.3

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.5.3'
8+
VERSION = 'v5.6.0'
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/'

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setup(
1616
name='SoftLayer',
17-
version='5.5.3',
17+
version='5.6.0',
1818
description=DESCRIPTION,
1919
long_description=LONG_DESCRIPTION,
2020
author='SoftLayer Technologies, Inc.',
@@ -33,10 +33,10 @@
3333
'six >= 1.7.0',
3434
'ptable >= 0.9.2',
3535
'click >= 7',
36-
'requests >= 2.18.4',
36+
'requests == 2.19.1',
3737
'prompt_toolkit >= 0.53',
3838
'pygments >= 2.0.0',
39-
'urllib3 >= 1.22'
39+
'urllib3 == 1.22'
4040
],
4141
keywords=['softlayer', 'cloud'],
4242
classifiers=[

snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: slcli # check to see if it's available
2-
version: '5.5.3+git' # check versioning
2+
version: '5.6.0+git' # check versioning
33
summary: Python based SoftLayer API Tool. # 79 char long summary
44
description: |
55
A command-line interface is also included and can be used to manage various SoftLayer products and services.

tools/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
requests >= 2.18.4
1+
requests == 2.19.1
22
click >= 5, < 7
33
prettytable >= 0.7.0
44
six >= 1.7.0
55
prompt_toolkit
6-
urllib3
6+
urllib3 == 1.22

tools/test-requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ pytest-cov
44
mock
55
sphinx
66
testtools
7-
urllib3
8-
requests >= 2.18.4
7+
urllib3 == 1.22
8+
requests == 2.19.1

0 commit comments

Comments
 (0)