From 7c2306baec8da79f0e4b879127b77a7b37760bbc Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 7 Jun 2012 22:09:01 -0400 Subject: [PATCH] v0.13.1 --- HISTORY.rst | 7 ++++--- requests/__init__.py | 4 ++-- 2 files changed, 6 insertions(+), 5 deletions(-) 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' -- 2.7.4