diff --git a/HISTORY.rst b/HISTORY.rst index b56b465a..d460edb4 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 aa52006a..f2708fdc 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'