From c07ad2b8a41831eae76fa7433e616cd664ff4a72 Mon Sep 17 00:00:00 2001 From: Colin-b Date: Tue, 22 Sep 2020 16:52:20 +0200 Subject: [PATCH] Rely on httpx 0.15.* --- CHANGELOG.md | 7 ++++++- httpx_auth/version.py | 2 +- setup.py | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29a08b5..52d7bb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0] - 2020-09-22 +### Changed +- Requires [`httpx`](https://www.python-httpx.org)==0.15.* + ## [0.5.1] - 2020-08-31 ### Fixed - `AWSAuth` authentication class now handles empty path. Thanks to [`Michael E. Martinka`](https://github.com/martinka). This class is still considered as under development and subject to breaking changes without notice. @@ -54,7 +58,8 @@ Note that a few changes were made: ### Added - Placeholder for port of requests_auth to httpx -[Unreleased]: https://github.com/Colin-b/httpx_auth/compare/v0.5.1...HEAD +[Unreleased]: https://github.com/Colin-b/httpx_auth/compare/v0.6.0...HEAD +[0.6.0]: https://github.com/Colin-b/httpx_auth/compare/v0.5.1...v0.6.0 [0.5.1]: https://github.com/Colin-b/httpx_auth/compare/v0.5.0...v0.5.1 [0.5.0]: https://github.com/Colin-b/httpx_auth/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/Colin-b/httpx_auth/compare/v0.3.0...v0.4.0 diff --git a/httpx_auth/version.py b/httpx_auth/version.py index 4e62895..b5618b5 100644 --- a/httpx_auth/version.py +++ b/httpx_auth/version.py @@ -3,4 +3,4 @@ # Major should be incremented in case there is a breaking change. (eg: 2.5.8 -> 3.0.0) # Minor should be incremented in case there is an enhancement. (eg: 2.5.8 -> 2.6.0) # Patch should be incremented in case there is a bug fix. (eg: 2.5.8 -> 2.5.9) -__version__ = "0.5.1" +__version__ = "0.6.0" diff --git a/setup.py b/setup.py index 87d44b4..fa45ba4 100644 --- a/setup.py +++ b/setup.py @@ -35,14 +35,14 @@ packages=find_packages(exclude=["tests*"]), install_requires=[ # Used for Base Authentication and to communicate with OAuth2 servers - "httpx==0.14.*" + "httpx==0.15.*" ], extras_require={ "testing": [ # Used to generate test tokens "pyjwt==1.*", # Used to mock httpx - "pytest_httpx==0.8.*", + "pytest_httpx==0.9.*", # Used to check coverage "pytest-cov==2.*", ]