Skip to content

Commit 98cdba3

Browse files
Sudipta MohapatraSudipta Mohapatra
authored andcommitted
updating new version for new changes
1 parent d01840f commit 98cdba3

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,9 @@
2525
2.3.1
2626
====
2727
- Misc bug fixes
28+
29+
2.3.2
30+
====
31+
- Adding schedule_time parameter support for multi_send fix
32+
- API Rate Limit values are now Integers
33+
- Adding stats_send helper function to retrieve information about a particular transactional template

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.1', platform.python_version())}
39+
headers = {'User-Agent': 'Sailthru API Python Client %s; Python Version: %s' % ('2.3.2', 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.1',
4+
version='2.3.2',
55
packages=find_packages(),
66
description='Python client for Sailthru API',
77
long_description=open('README.md').read(),

0 commit comments

Comments
 (0)