Skip to content

Commit

Permalink
Release version 8 today (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin-b authored Jun 18, 2024
1 parent b6ba2a5 commit 63962cd
Show file tree
Hide file tree
Showing 3 changed files with 7 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 requests_auth
- name: Install wheel
run: |
python -m pip install dist/requests_auth-7.0.0-py3-none-any.whl --force-reinstall
python -m pip install dist/requests_auth-8.0.0-py3-none-any.whl --force-reinstall
python -c 'import requests_auth'
- name: Install source distribution
run: |
python -m pip install dist/requests_auth-7.0.0.tar.gz --force-reinstall
python -m pip install dist/requests_auth-8.0.0.tar.gz --force-reinstall
python -c 'import requests_auth'
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [8.0.0] - 2024-06-18
### Added
- Adding explicit support for Python `3.12`.
- Publicly expose `requests_auth.SupportMultiAuth`, allowing multiple authentication support for every `requests` authentication class that exists.
Expand Down Expand Up @@ -222,7 +224,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Public release

[Unreleased]: https://github.com/Colin-b/requests_auth/compare/v7.0.0...HEAD
[Unreleased]: https://github.com/Colin-b/requests_auth/compare/v8.0.0...HEAD
[8.0.0]: https://github.com/Colin-b/requests_auth/compare/v7.0.0...v8.0.0
[7.0.0]: https://github.com/Colin-b/requests_auth/compare/v6.0.0...v7.0.0
[6.0.0]: https://github.com/Colin-b/requests_auth/compare/v5.3.0...v6.0.0
[5.3.0]: https://github.com/Colin-b/requests_auth/compare/v5.2.0...v5.3.0
Expand Down
2 changes: 1 addition & 1 deletion requests_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__ = "7.0.0"
__version__ = "8.0.0"

0 comments on commit 63962cd

Please sign in to comment.