summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Reitz <me@kennethreitz.com>2011-10-09 07:11:48 -0400
committerKenneth Reitz <me@kennethreitz.com>2011-10-09 07:11:48 -0400
commita8695ecd32f18135ae5f34f466382993a4cb7d3d (patch)
treefd35eae5d8ee8f8fe6f4870b5d77c6c00013f460
parent98c719f714dbfab02673cd313ae621e633c0a1bb (diff)
downloadpython-requests-0.6.2.tar.gz
v0.6.2v0.6.2
-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'