From a8695ecd32f18135ae5f34f466382993a4cb7d3d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 9 Oct 2011 07:11:48 -0400 Subject: [PATCH] v0.6.2 --- HISTORY.rst | 5 +++++ requests/core.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index b09392b5e9..fbd4a72620 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 8ba34a2fbc..505f8a24b7 100644 --- a/requests/core.py +++ b/requests/core.py @@ -12,8 +12,8 @@ """ __title__ = 'requests' -__version__ = '0.6.1' -__build__ = 0x000601 +__version__ = '0.6.2' +__build__ = 0x000602 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2011 Kenneth Reitz'