Skip to content

Commit 80a6abf

Browse files
committed
Bump version to 1.6.0
1 parent 09d4b29 commit 80a6abf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: messagebird/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from messagebird.number import Number, NumberList
2727

2828
ENDPOINT = 'https://rest.messagebird.com'
29-
CLIENT_VERSION = '1.4.1'
29+
CLIENT_VERSION = '1.6.0'
3030
PYTHON_VERSION = '%d.%d.%d' % (sys.version_info[0], sys.version_info[1], sys.version_info[2])
3131
USER_AGENT = 'MessageBird/ApiClient/%s Python/%s' % (CLIENT_VERSION, PYTHON_VERSION)
3232
REST_TYPE = 'rest'

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ def get_description():
1313
setup(
1414
name = 'messagebird',
1515
packages = ['messagebird'],
16-
version = '1.5.0',
16+
version = '1.6.0',
1717
description = "MessageBird's REST API",
1818
author = 'MessageBird',
1919
author_email = '[email protected]',
2020
long_description = description,
2121
long_description_content_type = description_content_type,
2222
url = 'https://github.com/messagebird/python-rest-api',
23-
download_url = 'https://github.com/messagebird/python-rest-api/tarball/1.4.1',
23+
download_url = 'https://github.com/messagebird/python-rest-api/tarball/1.6.0',
2424
keywords = ['messagebird', 'sms'],
2525
install_requires = ['requests>=2.4.1', 'python-dateutil>=2.6.0'],
2626
license = 'BSD-2-Clause',

0 commit comments

Comments
 (0)