Skip to content

Commit d7ec022

Browse files
committedMay 25, 2022
Allow httpx 0.23.x to fix a security issue in httpx
1 parent bfc5ba0 commit d7ec022

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
88

99
-
1010

11+
## [0.8.2] - 2022-05-25
12+
13+
### Changed
14+
15+
- Allow httpx v0.23.x to fix a bug in httpx
16+
1117
## [0.8.1] - 2022-04-20
1218

1319
### Bugfix

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def read_from_file(key):
4646
],
4747
install_requires=[
4848
'beautifulsoup4',
49-
'httpx>=0.20.0,<0.23.0',
49+
'httpx>=0.20.0,<0.24.0',
5050
'pbkdf2',
5151
'Pillow',
5252
'pyaes',

‎src/audible/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__description__ = "A(Sync) Interface for internal Audible API written in " \
33
"pure Python."
44
__url__ = "https://github.com/mkb79/audible"
5-
__version__ = "0.8.1"
5+
__version__ = "0.8.2"
66
__author__ = "mkb79"
77
__author_email__ = "mkb79@hackitall.de"
88
__license__ = "AGPL"

0 commit comments

Comments
 (0)
Please sign in to comment.