requests v2.4.1 v2.4.1
authorKenneth Reitz <me@kennethreitz.com>
Tue, 9 Sep 2014 16:34:34 +0000 (12:34 -0400)
committerKenneth Reitz <me@kennethreitz.com>
Tue, 9 Sep 2014 16:34:34 +0000 (12:34 -0400)
HISTORY.rst
requests/__init__.py

index 26d5c65bfec2e1e39da683fcd173272e32edfa59..2e4a80754e4c02670a3292294b2463c4b893cba8 100644 (file)
@@ -3,6 +3,15 @@
 Release History
 ---------------
 
+2.4.1 (2014-09-09)
+++++++++++++++++++
+
+- Now has a "security" package extras set, ``$ pip install requests[security]``
+- Requests will now use Certifi if it is available.
+- Capture and re-raise urllib3 ProtocolError
+- Bugfix for responses that attempt to redirect to themselves forever (wtf?).
+
+
 2.4.0 (2014-08-29)
 ++++++++++++++++++
 
index 33a2b27a68f0eef5e54391f59447599bd44c81ae..7b82374375bcaef44dd9fc2a84ea0f4d57d2042e 100644 (file)
@@ -42,8 +42,8 @@ is at <http://python-requests.org>.
 """
 
 __title__ = 'requests'
-__version__ = '2.4.0'
-__build__ = 0x020400
+__version__ = '2.4.1'
+__build__ = 0x020401
 __author__ = 'Kenneth Reitz'
 __license__ = 'Apache 2.0'
 __copyright__ = 'Copyright 2014 Kenneth Reitz'