Skip to content

Commit

Permalink
Allow httpx 0.23.x to fix a security issue in httpx
Browse files Browse the repository at this point in the history
  • Loading branch information
mkb79 committed May 25, 2022
1 parent bfc5ba0 commit d7ec022
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

-

## [0.8.2] - 2022-05-25

### Changed

- Allow httpx v0.23.x to fix a bug in httpx

## [0.8.1] - 2022-04-20

### Bugfix
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def read_from_file(key):
],
install_requires=[
'beautifulsoup4',
'httpx>=0.20.0,<0.23.0',
'httpx>=0.20.0,<0.24.0',
'pbkdf2',
'Pillow',
'pyaes',
Expand Down
2 changes: 1 addition & 1 deletion src/audible/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
__description__ = "A(Sync) Interface for internal Audible API written in " \
"pure Python."
__url__ = "https://github.com/mkb79/audible"
__version__ = "0.8.1"
__version__ = "0.8.2"
__author__ = "mkb79"
__author_email__ = "[email protected]"
__license__ = "AGPL"
Expand Down

0 comments on commit d7ec022

Please sign in to comment.