Skip to content

Commit 521fdaa

Browse files
Sudipta MohapatraSudipta Mohapatra
authored andcommitted
update version number
1 parent 17e201c commit 521fdaa

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
@@ -35,3 +35,7 @@
3535
2.3.3
3636
====
3737
- Adding update postback
38+
39+
2.3.4
40+
===
41+
- Add headers param to stats_list method

sailthru/sailthru_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def sailthru_http_request(url, data, method, file_data=None, headers=None):
3434
data = flatten_nested_hash(data)
3535
method = method.upper()
3636
params, data = (None, data) if method == 'POST' else (data, None)
37-
sailthru_headers = {'User-Agent': 'Sailthru API Python Client %s; Python Version: %s' % ('2.3.3', platform.python_version())}
37+
sailthru_headers = {'User-Agent': 'Sailthru API Python Client %s; Python Version: %s' % ('2.3.4', platform.python_version())}
3838
if headers and isinstance(headers, dict):
3939
for key, value in sailthru_headers.items():
4040
headers[key] = value

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.3',
4+
version='2.3.4',
55
packages=find_packages(),
66
description='Python client for Sailthru API',
77
long_description=open('README.md').read(),

0 commit comments

Comments
 (0)