Skip to content

Commit 6ece889

Browse files
committed
Version bump to v4.0.1
1 parent fa58330 commit 6ece889

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
4.0.1
2+
3+
* Fixes bug in `sl setup` command not properly defaulting to current values.
4+
5+
* Fixes bug where turning off compression headers would still send compression headers.
6+
7+
* Reverts to using ids over global identifiers for `sl vs list` and `sl server list`.
8+
9+
110
4.0.0
211

312
* Because there are many changes between version 3 and version 4, it is strongly recommend to pin the version of the SoftLayer python bindings as soon as you can in order to prevent unintentional breakage when upgrading. To keep yourself on version 3, you can use this directive: softlayer>=3,<4. That can be used with pip (pip install softlayer>=3,<4), requirements in your setup.py and/or in your requirements.txt file.

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 = 'v4.0.0'
8+
VERSION = 'v4.0.1'
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/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '4.0.0'
58+
version = '4.0.1'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '4.0.0'
60+
release = '4.0.1'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

setup.py

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

3535
setup(
3636
name='SoftLayer',
37-
version='4.0.0',
37+
version='4.0.1',
3838
description=DESCRIPTION,
3939
long_description=LONG_DESCRIPTION,
4040
author='SoftLayer Technologies, Inc.',

0 commit comments

Comments
 (0)