Skip to content

Commit efaa833

Browse files
Sudipta MohapatraSudipta Mohapatra
authored andcommitted
updating version
1 parent 2395a63 commit efaa833

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

CHANGES

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,7 @@
3131
- Adding schedule_time parameter support for multi_send fix
3232
- API Rate Limit values are now Integers
3333
- Adding stats_send helper function to retrieve information about a particular transactional template
34+
35+
2.3.3
36+
====
37+
- Adding update postback

sailthru/sailthru_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def sailthru_http_request(url, data, method, file_data=None):
3636
params, data = (None, data) if method == 'POST' else (data, None)
3737

3838
try:
39-
headers = {'User-Agent': 'Sailthru API Python Client %s; Python Version: %s' % ('2.3.2', platform.python_version())}
39+
headers = {'User-Agent': 'Sailthru API Python Client %s; Python Version: %s' % ('2.3.3', platform.python_version())}
4040
response = requests.request(method, url, params=params, data=data, files=file_data, headers=headers, timeout=10)
4141
return SailthruResponse(response)
4242
except requests.HTTPError as e:

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

33
setup(name='sailthru-client',
4-
version='2.3.2',
4+
version='2.3.3',
55
packages=find_packages(),
66
description='Python client for Sailthru API',
77
long_description=open('README.md').read(),

0 commit comments

Comments
 (0)