Skip to content

Commit

Permalink
v2.31.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nateprewitt committed May 18, 2024
1 parent f9fa552 commit 85daf20
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ dev

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


2.31.1 (2024-05-20)
-------------------

**Dependencies**

- `charset_normalizer` and `chardet` are now optional dependencies of Requests.
The default behavior will degrade to using `utf-8` when decoding strings in
the `Response.text()` API if `Response.encoding` is not set.

This will not affect the default installation of Requests but enables
downstream repackaging to remove these dependencies if they're undesired.
Default installations of Requests will still use `charset_normalizer` unless
`chardet` is present.


2.31.0 (2023-05-22)
-------------------

Expand Down
4 changes: 2 additions & 2 deletions requests/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
__title__ = "requests"
__description__ = "Python HTTP for Humans."
__url__ = "https://requests.readthedocs.io"
__version__ = "2.31.0"
__build__ = 0x023100
__version__ = "2.31.1"
__build__ = 0x023101
__author__ = "Kenneth Reitz"
__author_email__ = "me@kennethreitz.org"
__license__ = "Apache 2.0"
Expand Down

0 comments on commit 85daf20

Please sign in to comment.