This commit is contained in:
Cory Benfield
2016-12-01 10:48:35 +00:00
parent 7d2dfa8684
commit c398ab0e7d
2 changed files with 14 additions and 2 deletions
+12
View File
@@ -3,6 +3,18 @@
Release History
---------------
2.12.3 (2016-12-01)
+++++++++++++++++++
**Bugfixes**
- Fixed regression from v2.12.1 for URLs with schemes that begin with "http".
These URLs have historically been processed as though they were HTTP-schemed
URLs, and so have had parameters added. This was removed in v2.12.2 in an
overzealous attempt to resolve problems with IDNA-encoding those URLs. This
change was reverted: the other fixes for IDNA-encoding have been judged to
be sufficient to return to the behaviour Requests had before v2.12.0.
2.12.2 (2016-11-30)
+++++++++++++++++++
+2 -2
View File
@@ -41,8 +41,8 @@ is at <http://python-requests.org>.
"""
__title__ = 'requests'
__version__ = '2.12.2'
__build__ = 0x021202
__version__ = '2.12.3'
__build__ = 0x021203
__author__ = 'Kenneth Reitz'
__license__ = 'Apache 2.0'
__copyright__ = 'Copyright 2016 Kenneth Reitz'