diff --git a/HISTORY.rst b/HISTORY.rst index dea92671..8b39235d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,15 @@ History ------- +0.12.1 (2012-05-08) ++++++++++++++++++++ + +- New ``Response.json`` property +- Ability to add string file uploads +- Fix out-of-range issue with iter_lines +- Fix iter_content default size +- Fix POST redirects containing files + 0.12.0 (2012-05-02) +++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index 1f5d7215..38e5bc61 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,8 +15,8 @@ requests """ __title__ = 'requests' -__version__ = '0.12.0' -__build__ = 0x001200 +__version__ = '0.12.01' +__build__ = 0x001201 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2012 Kenneth Reitz'