Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cd_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
version_update_changes_separator: ","
version_update_changes: |
{package_dir}/__init__.py,__version__ *= *(?:'|\").*(?:'|\"),__version__ = \"{version}\"
.github/workflows/ci_tests.yml,dist/httpx2_auth-2\.[0-9]+\.[0-9]+\.[0-9]+,dist/httpx2_auth-{version}
.github/workflows/ci_tests.yml,dist/httpx2_auth-[0-9]+\.[0-9]+\.[0-9]+,dist/httpx2_auth-{version}

# Documentation
update_docs: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,10 @@ jobs:

- name: Install wheel
run: |
python -m pip install dist/httpx2_auth-2.0.1.0-py3-none-any.whl --force-reinstall
python -m pip install dist/httpx2_auth-2.0.0-py3-none-any.whl --force-reinstall
python -c 'import httpx2_auth'

- name: Install source distribution
run: |
python -m pip install dist/httpx2_auth-2.0.1.0.tar.gz --force-reinstall
python -m pip install dist/httpx2_auth-2.0.0.tar.gz --force-reinstall
python -c 'import httpx2_auth'
9 changes: 0 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,6 @@
>
> For more information about this project, please refer to the original repository.

<p align="center">
<a href="https://pypi.org/project/httpx2-auth/"><img alt="pypi version" src="https://img.shields.io/pypi/v/httpx2_auth"></a>
<a href="https://github.com/SemanticMatter/httpx2_auth/actions"><img alt="Build status" src="https://github.com/SemanticMatter/httpx2_auth/workflows/Release/badge.svg"></a>
<a href="https://github.com/SemanticMatter/httpx2_auth/actions"><img alt="Coverage" src="https://img.shields.io/badge/coverage-100%25-brightgreen"></a>
<a href="https://github.com/psf/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
<a href="https://github.com/SemanticMatter/httpx2_auth/actions"><img alt="Number of tests" src="https://img.shields.io/badge/tests-783 passed-blue"></a>
<a href="https://pypi.org/project/httpx2-auth/"><img alt="Number of downloads" src="https://img.shields.io/pypi/dm/httpx2_auth"></a>
</p>

> [!NOTE]
> Version 1.0.0 will be released once httpx is considered as stable (release of 1.0.0).
>
Expand Down
5 changes: 2 additions & 3 deletions httpx2_auth/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,5 @@
# 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)

# Started epoch 2 to be able to use distinct version numbers for the first release of httpx2_auth, which is compatible with httpx2.
__version__ = "2.0.1.0"
# NOTE: Using major version 2 as of releasing `httpx2-auth`.
__version__ = "2.0.0"