diff --git a/HISTORY.rst b/HISTORY.rst index 2fb4734..73a3cd7 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,16 @@ History ------- +3.1.1 (2013-12-05) +++++++++++++++++++ + +- Update `requests` version to 2.1.0. +- Fixed: Streaming issue where `Exceptions` in handlers or `on_success` which subclass `ValueError` would +previously be caught and reported as a JSON decoding problem, and +`on_error()` would be called (with status_code=200) +- Fixed issue where XML was returned when bad tokens were passed to `get_authorized_tokens` +- Fixed import for `setup` causing installation to fail on some devices (eg. Nokia N9/MeeGo) + 3.1.0 (2013-09-25) ++++++++++++++++++ diff --git a/requirements.txt b/requirements.txt index a103b0e..9168274 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ coverage==3.6.0 -requests==2.0.1 +requests==2.1.0 requests_oauthlib==0.4.0 python-coveralls==2.1.0 nose-cov==1.6 diff --git a/setup.py b/setup.py index a7ff8df..7c8df69 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ except ImportError: from distutils.core import setup __author__ = 'Ryan McGrath ' -__version__ = '3.1.0' +__version__ = '3.1.1' packages = [ 'twython', @@ -23,7 +23,7 @@ if sys.argv[-1] == 'publish': setup( name='twython', version=__version__, - install_requires=['requests==2.0.1', 'requests_oauthlib==0.4.0'], + install_requires=['requests==2.1.0', 'requests_oauthlib==0.4.0'], author='Ryan McGrath', author_email='ryan@venodesigns.net', license=open('LICENSE').read(), diff --git a/twython/__init__.py b/twython/__init__.py index 4a90afc..bd4bc0b 100644 --- a/twython/__init__.py +++ b/twython/__init__.py @@ -18,7 +18,7 @@ Questions, comments? ryan@venodesigns.net """ __author__ = 'Ryan McGrath ' -__version__ = '3.1.0' +__version__ = '3.1.1' from .api import Twython from .streaming import TwythonStreamer