From: Kenneth Reitz Date: Wed, 2 May 2012 23:13:19 +0000 (-0400) Subject: v0.12.0 X-Git-Tag: v0.12.0~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fb2931801edd807c581108e743040475116c5d85;p=services%2Fpython-requests.git v0.12.0 --- diff --git a/HISTORY.rst b/HISTORY.rst index ca947b5..8cdd84c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,13 +3,17 @@ History ------- -0.11.3 (2012-05-01) +0.12.0 (2012-05-01) +++++++++++++++++++ - EXPERIMENTAL OAUTH SUPPORT! -- Speed fix for non-iterated content chunks -- Move pre_request to a more usable place -- Cleanups, fixes +- Proper CookieJar-backed cookies interface with awesome dict-like interface. +- Speed fix for non-iterated content chunks. +- Move ``pre_request`` to a more usable place. +- New ``pre_send`` hook. +- Lazily encode data, params, files +- Load system Certificate Bundle if ``certify`` isn't available. +- Cleanups, fixes. 0.11.2 (2012-04-22) +++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index cce0af8..1f5d721 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,8 +15,8 @@ requests """ __title__ = 'requests' -__version__ = '0.11.3' -__build__ = 0x001103 +__version__ = '0.12.0' +__build__ = 0x001200 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2012 Kenneth Reitz'