Skip to content

Commit 1e2fc2e

Browse files
committed
Bump client version to 1.3.0.
This version adds support for the contacts and groups endpoints, and should also improve compatibility with Python 2.7
1 parent ab45d35 commit 1e2fc2e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

messagebird/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from messagebird.verify import Verify
1515

1616
ENDPOINT = 'https://rest.messagebird.com'
17-
CLIENT_VERSION = '1.2.1'
17+
CLIENT_VERSION = '1.3.0'
1818
PYTHON_VERSION = '%d.%d.%d' % (sys.version_info[0], sys.version_info[1], sys.version_info[2])
1919
USER_AGENT = 'MessageBird/ApiClient/%s Python/%s' % (CLIENT_VERSION, PYTHON_VERSION)
2020

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
setup(
44
name = 'messagebird',
55
packages = ['messagebird'],
6-
version = '1.2.1',
6+
version = '1.3.0',
77
description = "MessageBird's REST API",
88
author = 'MessageBird',
99
author_email = '[email protected]',
1010
url = 'https://github.com/messagebird/python-rest-api',
11-
download_url = 'https://github.com/messagebird/python-rest-api/tarball/1.2.1',
11+
download_url = 'https://github.com/messagebird/python-rest-api/tarball/1.3.0',
1212
keywords = ['messagebird', 'sms'],
1313
install_requires = ['requests>=2.4.1'],
1414
license = 'BSD-2-Clause',

0 commit comments

Comments
 (0)