From: Kenneth Reitz Date: Mon, 30 Jan 2012 14:41:09 +0000 (-0500) Subject: v0.10.2 X-Git-Tag: v0.10.2~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=986704dc62dc7bce0ed323a25dc3c52fe24cef06;p=services%2Fpython-requests.git v0.10.2 --- diff --git a/AUTHORS.rst b/AUTHORS.rst index 7a8c5ad..3e72f34 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -79,3 +79,4 @@ Patches and Suggestions - Ben Toews (mastahyeti) - David Kemp - Brendon Crawford +- Denis (Telofy) diff --git a/HISTORY.rst b/HISTORY.rst index bf824bd..916c8e3 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,15 @@ History ------- +0.10.2 +++++++ + +* Attmpted fix for "Too many open files" Error +* Replace unicode errors on first pass, no need for second pass. +* Append '/' to bare-domain urls before query insertion. +* Bugfixes. + + 0.10.1 (2012-01-23) +++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index 48fb389..5436f89 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,8 +15,8 @@ requests """ __title__ = 'requests' -__version__ = '0.10.1' -__build__ = 0x001001 +__version__ = '0.10.2' +__build__ = 0x001002 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2012 Kenneth Reitz'