diff --git a/CHANGELOG b/CHANGELOG index 506bdf148..39c1ee470 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +5.0.1 + + * Adds missing depdendency that was previously pulled in by prompt_toolkit + + * Fix a bug by updating the CDN manager to use the new purge method + + * Fixes bug that occured when iscsi listings with resources have no datacenter + 5.0.0 * Adds a shell (accessable with `slcli shell`) which provides autocomplete for slcli commands and options diff --git a/SoftLayer/consts.py b/SoftLayer/consts.py index 9b03ce82b..abcd90c7e 100644 --- a/SoftLayer/consts.py +++ b/SoftLayer/consts.py @@ -5,7 +5,7 @@ :license: MIT, see LICENSE for more details. """ -VERSION = 'v5.0.0' +VERSION = 'v5.0.1' 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/conf.py b/docs/conf.py index df1612209..cb63c4dad 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = '5.0.0' +version = '5.0.1' # The full version, including alpha/beta/rc tags. -release = '5.0.0' +release = '5.0.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index ea0e41113..58bccfe54 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name='SoftLayer', - version='5.0.0', + version='5.0.1', description=DESCRIPTION, long_description=LONG_DESCRIPTION, author='SoftLayer Technologies, Inc.', @@ -49,8 +49,8 @@ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ],