8000 Merge branch 'release-3.2.0' · alexcchan/twilio-python@426fe43 · GitHub
[go: up one dir, main page]

Skip to content

Commit 426fe43

Browse files
committed
Merge branch 'release-3.2.0'
2 parents c15c2bc + 3816917 commit 426fe43

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
# built documents.
5555
#
5656
# The short X.Y version.
57-
version = '3.1'
57+
version = '3.2'
5858
# The full version, including alpha/beta/rc tags.
59-
release = '3.1.0'
59+
release = '3.2.0'
6060

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22
setup(
33
name = "twilio",
4-
version = "3.1.0",
4+
version = "3.2.0",
55
description = "Twilio API client and TwiML generator",
66
author = "Twilio",
77
author_email = "help@twilio.com",

twilio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version_info__ = ('3', '1', '0')
1+
__version_info__ = ('3', '2', '0')
22
__version__ = '.'.join(__version_info__)
33

44

twilio/rest/resources.py

Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def make_twilio_request(method, uri, **kwargs):
144144
Make a request to Twilio. Throws an error
145145
"""
146146
headers = kwargs.get("headers", {})
147-
headers["User-Agent"] = "twilio-python" # Add user aggent string
147+
headers["User-Agent"] = "twilio-python/3.2.0" # Add user aggent string
148148

149149
if method == "POST" and "Content-Type" not in headers:
150150
headers["Content-Type"] = "application/x-www-form-urlencoded"

0 commit comments

Comments
 (0)
0