Skip to content

Commit 0797c61

Browse files
committed
v2.24.0
1 parent daa2b29 commit 0797c61

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

HISTORY.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Release History
44
dev
55
---
66

7+
- \[Short description of non-trivial change.\]
8+
9+
2.24.0 (2020-06-17)
10+
-------------------
11+
712
**Improvements**
813

914
- pyOpenSSL TLS implementation is now only used if Python
@@ -12,6 +17,11 @@ dev
1217
This applies even if pyOpenSSL is installed via the
1318
`requests[security]` extra (#5443)
1419

20+
- Redirect resolution should now only occur when
21+
`allow_redirects` is True. (#5492)
22+
23+
- No longer perform unnecessary Content-Length calculation for
24+
requests that won't use it. (#5496)
1525

1626
2.23.0 (2020-02-19)
1727
-------------------

requests/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
__title__ = 'requests'
66
__description__ = 'Python HTTP for Humans.'
77
__url__ = 'https://requests.readthedocs.io'
8-
__version__ = '2.23.0'
9-
__build__ = 0x022300
8+
__version__ = '2.24.0'
9+
__build__ = 0x022400
1010
__author__ = 'Kenneth Reitz'
1111
__author_email__ = 'me@kennethreitz.org'
1212
__license__ = 'Apache 2.0'

0 commit comments

Comments
 (0)