Skip to content

Commit e001f07

Browse files
committed
Release version 0.23.1 today
1 parent c29da86 commit e001f07

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
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'

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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

httpx_auth/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
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"

0 commit comments

Comments
 (0)