summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY.rst5
-rw-r--r--requests/core.py4
2 files changed, 7 insertions, 2 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index b09392b5..fbd4a726 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 8ba34a2f..505f8a24 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'