Skip to content

Commit 63962cd

Browse files
authored
Release version 8 today (#87)
1 parent b6ba2a5 commit 63962cd

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.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 requests_auth
3131
- name: Install wheel
3232
run: |
33-
python -m pip install dist/requests_auth-7.0.0-py3-none-any.whl --force-reinstall
33+
python -m pip install dist/requests_auth-8.0.0-py3-none-any.whl --force-reinstall
3434
python -c 'import requests_auth'
3535
- name: Install source distribution
3636
run: |
37-
python -m pip install dist/requests_auth-7.0.0.tar.gz --force-reinstall
37+
python -m pip install dist/requests_auth-8.0.0.tar.gz --force-reinstall
3838
python -c 'import requests_auth'

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

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

225-
[Unreleased]: https://github.com/Colin-b/requests_auth/compare/v7.0.0...HEAD
227+
[Unreleased]: https://github.com/Colin-b/requests_auth/compare/v8.0.0...HEAD
228+
[8.0.0]: https://github.com/Colin-b/requests_auth/compare/v7.0.0...v8.0.0
226229
[7.0.0]: https://github.com/Colin-b/requests_auth/compare/v6.0.0...v7.0.0
227230
[6.0.0]: https://github.com/Colin-b/requests_auth/compare/v5.3.0...v6.0.0
228231
[5.3.0]: https://github.com/Colin-b/requests_auth/compare/v5.2.0...v5.3.0

requests_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__ = "7.0.0"
6+
__version__ = "8.0.0"

0 commit comments

Comments
 (0)