File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030 rm -Rf httpx_auth
3131 - name : Install wheel
3232 run : |
33- python -m pip install dist/httpx_auth-0.23.0 -py3-none-any.whl --force-reinstall
33+ python -m pip install dist/httpx_auth-0.23.1 -py3-none-any.whl --force-reinstall
3434 python -c 'import httpx_auth'
3535 - name : Install source distribution
3636 run : |
37- python -m pip install dist/httpx_auth-0.23.0 .tar.gz --force-reinstall
37+ python -m pip install dist/httpx_auth-0.23.1 .tar.gz --force-reinstall
3838 python -c 'import httpx_auth'
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 0.23.1] - 2025-01-07
10+ ### Fixed
11+ - Test suite should now run even if port 5000 is used by another process. Thanks to [ ` commonism ` ] ( https://github.com/commonism ) .
12+
913## [ 0.23.0] - 2025-01-07
1014### Fixed
1115- Bearer tokens with nested JSON string are now properly handled. Thanks to [ ` Patrick Rodrigues ` ] ( https://github.com/pythrick ) .
@@ -262,7 +266,8 @@ Note that a few changes were made:
262266### Added
263267- Placeholder for port of requests_auth to httpx
264268
265- [ Unreleased ] : https://github.com/Colin-b/httpx_auth/compare/v0.23.0...HEAD
269+ [ Unreleased ] : https://github.com/Colin-b/httpx_auth/compare/v0.23.1...HEAD
270+ [ 0.23.1 ] : https://github.com/Colin-b/httpx_auth/compare/v0.23.0...v0.23.1
266271[ 0.23.0 ] : https://github.com/Colin-b/httpx_auth/compare/v0.22.0...v0.23.0
267272[ 0.22.0 ] : https://github.com/Colin-b/httpx_auth/compare/v0.21.0...v0.22.0
268273[ 0.21.0 ] : https://github.com/Colin-b/httpx_auth/compare/v0.20.0...v0.21.0
Original file line number Diff line number Diff line change 33# Major should be incremented in case there is a breaking change. (eg: 2.5.8 -> 3.0.0)
44# Minor should be incremented in case there is an enhancement. (eg: 2.5.8 -> 2.6.0)
55# Patch should be incremented in case there is a bug fix. (eg: 2.5.8 -> 2.5.9)
6- __version__ = "0.23.0 "
6+ __version__ = "0.23.1 "
You can’t perform that action at this time.
0 commit comments