From bca920c1c1a96e191ec7f9fcaec5f53e46edf08e Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 8 May 2012 01:18:05 -0400 Subject: [PATCH] v0.12.1 --- HISTORY.rst | 9 +++++++++ requests/__init__.py | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index dea9267..8b39235 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 1f5d721..38e5bc6 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' -- 2.34.1