From: Kenneth Reitz Date: Fri, 8 Jun 2012 02:09:01 +0000 (-0400) Subject: v0.13.1 X-Git-Tag: v0.13.1~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7c2306baec8da79f0e4b879127b77a7b37760bbc;p=services%2Fpython-requests.git v0.13.1 --- diff --git a/HISTORY.rst b/HISTORY.rst index 298660c..d765f45 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,11 +3,12 @@ History ------- -0.13.1 (2012-06-??) +0.13.1 (2012-06-07) +++++++++++++++++++ -- Allow hooks to return responses that indicate errors -- +- Allow passing a file or file-like object as data. +- Allow hooks to return responses that indicate errors. +- Fix Response.text and Response.json for body-less responses. 0.13.0 (2012-05-29) +++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index 42b7522..10c9e7a 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,8 +15,8 @@ requests """ __title__ = 'requests' -__version__ = '0.13.0' -__build__ = 0x001300 +__version__ = '0.13.1' +__build__ = 0x001301 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2012 Kenneth Reitz'