diff options
author | Nate Prewitt <Nate.Prewitt@gmail.com> | 2020-02-19 10:27:54 -0800 |
---|---|---|
committer | Nate Prewitt <Nate.Prewitt@gmail.com> | 2020-02-19 10:27:54 -0800 |
commit | c7e0fc087ceeadb8b4c84a0953a422c474093d6d (patch) | |
tree | acd4b129e372ddfb573a1a2f4a7ba9b3ccc0e276 | |
parent | fd13816d015c4c90ee65297fa996caea6a094ed1 (diff) | |
download | python-requests-2.23.0.tar.gz |
v2.23.0v2.23.0
-rw-r--r-- | HISTORY.md | 16 | ||||
-rw-r--r-- | requests/__version__.py | 6 |
2 files changed, 19 insertions, 3 deletions
@@ -8,6 +8,22 @@ dev - \[Short description of non-trivial change.\] +2.23.0 (2020-02-19) +------------------- + +**Improvements** + +- Remove defunct reference to `prefetch` in Session `__attrs__` (#5110) + +**Bugfixes** + +- Requests no longer outputs password in basic auth usage warning. (#5099) + +**Dependencies** + +- Pinning for `chardet` and `idna` now uses major version instead of minor. + This hopefully reduces the need for releases everytime a dependency is updated. + 2.22.0 (2019-05-15) ------------------- diff --git a/requests/__version__.py b/requests/__version__.py index f98cd752..b9e7df48 100644 --- a/requests/__version__.py +++ b/requests/__version__.py @@ -5,10 +5,10 @@ __title__ = 'requests' __description__ = 'Python HTTP for Humans.' __url__ = 'https://requests.readthedocs.io' -__version__ = '2.22.0' -__build__ = 0x022200 +__version__ = '2.23.0' +__build__ = 0x022300 __author__ = 'Kenneth Reitz' __author_email__ = 'me@kennethreitz.org' __license__ = 'Apache 2.0' -__copyright__ = 'Copyright 2019 Kenneth Reitz' +__copyright__ = 'Copyright 2020 Kenneth Reitz' __cake__ = u'\u2728 \U0001f370 \u2728' |