From: Kenneth Reitz Date: Sun, 9 Oct 2011 11:11:48 +0000 (-0400) Subject: v0.6.2 X-Git-Tag: v0.6.2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a8695ecd32f18135ae5f34f466382993a4cb7d3d;p=services%2Fpython-requests.git v0.6.2 --- diff --git a/HISTORY.rst b/HISTORY.rst index b09392b..fbd4a72 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ History ------- +0.6.2 (2011-10-09) +++++++++++++++++++ + +* GET/HEAD obeys follow_redirect=False + 0.6.1 (2011-08-20) ++++++++++++++++++ diff --git a/requests/core.py b/requests/core.py index 8ba34a2..505f8a2 100644 --- a/requests/core.py +++ b/requests/core.py @@ -12,8 +12,8 @@ This module implements the main Requests system. """ __title__ = 'requests' -__version__ = '0.6.1' -__build__ = 0x000601 +__version__ = '0.6.2' +__build__ = 0x000602 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2011 Kenneth Reitz'