Skip to content

Commit 0cd5b62

Browse files
committed
bump version
1 parent 521fdaa commit 0cd5b62

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
@@ -39,3 +39,7 @@
3939
2.3.4
4040
===
4141
- Add headers param to stats_list method
42+
43+
2.3.5
44+
===
45+
- Add request timeout argument

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

0 commit comments

Comments
 (0)