requests v2.4.1

This commit is contained in:
Kenneth Reitz
2014-09-09 12:34:34 -04:00
parent 5e94c81e98
commit dff383ce8f
2 changed files with 11 additions and 2 deletions
+9
View 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)
++++++++++++++++++
+2 -2
View 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'