diff options
author | Nate Prewitt <Nate.Prewitt@gmail.com> | 2018-11-08 09:14:10 -0800 |
---|---|---|
committer | Nate Prewitt <Nate.Prewitt@gmail.com> | 2018-11-08 09:14:10 -0800 |
commit | 6cfbe1aedd56f8c2f9ff8b968efe65b22669795b (patch) | |
tree | 6fa6173b537188bfd79d1449633de786cb0c8ae0 | |
parent | c501ec986daa4961cd9dee370b5d45ff2e524b37 (diff) | |
download | python-requests-2.20.1.tar.gz |
v2.20.1v2.20.1
-rw-r--r-- | HISTORY.md | 8 | ||||
-rw-r--r-- | requests/__version__.py | 4 |
2 files changed, 10 insertions, 2 deletions
@@ -8,6 +8,14 @@ dev - \[Short description of non-trivial change.\] +2.20.1 (2018-11-08) +------------------- + +**Bugfixes** + +- Fixed bug with unintended Authorization header stripping for + redirects using default ports (http/80, https/443). + 2.20.0 (2018-10-18) ------------------- diff --git a/requests/__version__.py b/requests/__version__.py index be8a45fe..803773a0 100644 --- a/requests/__version__.py +++ b/requests/__version__.py @@ -5,8 +5,8 @@ __title__ = 'requests' __description__ = 'Python HTTP for Humans.' __url__ = 'http://python-requests.org' -__version__ = '2.20.0' -__build__ = 0x022000 +__version__ = '2.20.1' +__build__ = 0x022001 __author__ = 'Kenneth Reitz' __author_email__ = 'me@kennethreitz.org' __license__ = 'Apache 2.0' |