Skip to content

Commit

Permalink
Release version 0.23.1 today
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin-b committed Jan 7, 2025
1 parent c29da86 commit e001f07
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ jobs:
rm -Rf httpx_auth
- name: Install wheel
run: |
python -m pip install dist/httpx_auth-0.23.0-py3-none-any.whl --force-reinstall
python -m pip install dist/httpx_auth-0.23.1-py3-none-any.whl --force-reinstall
python -c 'import httpx_auth'
- name: Install source distribution
run: |
python -m pip install dist/httpx_auth-0.23.0.tar.gz --force-reinstall
python -m pip install dist/httpx_auth-0.23.1.tar.gz --force-reinstall
python -c 'import httpx_auth'
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.23.1] - 2025-01-07
### Fixed
- Test suite should now run even if port 5000 is used by another process. Thanks to [`commonism`](https://github.com/commonism).

## [0.23.0] - 2025-01-07
### Fixed
- Bearer tokens with nested JSON string are now properly handled. Thanks to [`Patrick Rodrigues`](https://github.com/pythrick).
Expand Down Expand Up @@ -262,7 +266,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.23.0...HEAD
[Unreleased]: https://github.com/Colin-b/httpx_auth/compare/v0.23.1...HEAD
[0.23.1]: https://github.com/Colin-b/httpx_auth/compare/v0.23.0...v0.23.1
[0.23.0]: https://github.com/Colin-b/httpx_auth/compare/v0.22.0...v0.23.0
[0.22.0]: https://github.com/Colin-b/httpx_auth/compare/v0.21.0...v0.22.0
[0.21.0]: https://github.com/Colin-b/httpx_auth/compare/v0.20.0...v0.21.0
Expand Down
2 changes: 1 addition & 1 deletion httpx_auth/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.23.0"
__version__ = "0.23.1"

0 comments on commit e001f07

Please sign in to comment.