From: Kenneth Reitz Date: Sun, 19 Aug 2012 00:46:55 +0000 (+1000) Subject: v0.13.7 X-Git-Tag: v0.13.7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b130b98086e1826bd0ade3fd9a899e49eeb253ec;p=services%2Fpython-requests.git v0.13.7 --- diff --git a/HISTORY.rst b/HISTORY.rst index c54fc01..0596751 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,16 @@ History ------- +0.13.7 (2012-08-19) ++++++++++++++++++++ + +- Support for (key, value) lists everywhere. +- Digest Authentication improvements. +- Ensure proxy exclusions work properly. +- Clearer UnicodeError exceptions. +- Automatic casting of URLs to tsrings (fURL and such) +- Bugfixes. + 0.13.6 (2012-08-06) +++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index d79fe32..e2cf3af 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,8 +15,8 @@ requests """ __title__ = 'requests' -__version__ = '0.13.6' -__build__ = 0x001306 +__version__ = '0.13.7' +__build__ = 0x001307 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2012 Kenneth Reitz'