Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
peterzal committed Jul 26, 2018
1 parent 521fdaa commit 0cd5b62
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,7 @@
2.3.4
===
- Add headers param to stats_list method

2.3.5
===
- Add request timeout argument
2 changes: 1 addition & 1 deletion sailthru/sailthru_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def sailthru_http_request(url, data, method, file_data=None, headers=None):
data = flatten_nested_hash(data)
method = method.upper()
params, data = (None, data) if method == 'POST' else (data, None)
sailthru_headers = {'User-Agent': 'Sailthru API Python Client %s; Python Version: %s' % ('2.3.4', platform.python_version())}
sailthru_headers = {'User-Agent': 'Sailthru API Python Client %s; Python Version: %s' % ('2.3.5', platform.python_version())}
if headers and isinstance(headers, dict):
for key, value in sailthru_headers.items():
headers[key] = value
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

setup(name='sailthru-client',
version='2.3.4',
version='2.3.5',
packages=find_packages(),
description='Python client for Sailthru API',
long_description=open('README.md').read(),
Expand Down

0 comments on commit 0cd5b62

Please sign in to comment.