Skip to content

Commit 6e83187

Browse files
authored
v2.34.2
1 parent 84d10f0 commit 6e83187

2 files changed

Lines changed: 10 additions & 2 deletions

File tree

HISTORY.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ dev
66

77
- \[Short description of non-trivial change.\]
88

9+
10+
2.34.2 (2026-05-14)
11+
-------------------
12+
- Moved `headers` input type back to `Mapping` to avoid invariance issues
13+
with `MutableMapping` and inferred dict types. Users calling
14+
`Request.headers.update()` may need to narrow typing in their code. (#7441)
15+
16+
917
2.34.1 (2026-05-13)
1018
-------------------
1119

src/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.34.1"
9-
__build__ = 0x023401
8+
__version__ = "2.34.2"
9+
__build__ = 0x023402
1010
__author__ = "Kenneth Reitz"
1111
__author_email__ = "me@kennethreitz.org"
1212
__license__ = "Apache-2.0"

0 commit comments

Comments
 (0)