From: Kenneth Reitz Date: Fri, 6 Jan 2012 06:10:53 +0000 (-0500) Subject: v0.9.1 X-Git-Tag: v0.9.1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=638532dd9ae319bef4d2eaa4b905d21bfc035c7e;p=services%2Fpython-requests.git v0.9.1 --- diff --git a/HISTORY.rst b/HISTORY.rst index b56b465..d460edb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,12 @@ History ------- +0.9.1 (2012-01-06) +++++++++++++++++++ + +* danger_mode for automatic Response.raise_for_status() +* Response.iter_lines refator + 0.9.0 (2011-12-28) ++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index aa52006..f2708fd 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,8 +15,8 @@ requests """ __title__ = 'requests' -__version__ = '0.9.0' -__build__ = 0x000900 +__version__ = '0.9.1' +__build__ = 0x000901 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2012 Kenneth Reitz'