From aa5fa4ad1e55065de14dcf7230ed8ae3e3629703 Mon Sep 17 00:00:00 2001 From: Casper Welzel Andersen Date: Tue, 2 Jun 2026 14:03:42 +0200 Subject: [PATCH 1/2] Remove batches from README --- README.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/README.md b/README.md index ce610d7..d1746c3 100644 --- a/README.md +++ b/README.md @@ -9,15 +9,6 @@ > > For more information about this project, please refer to the original repository. -

-pypi version -Build status -Coverage -Code style: black -Number of tests -Number of downloads -

- > [!NOTE] > Version 1.0.0 will be released once httpx is considered as stable (release of 1.0.0). > From 1f6ea1e363576288902e0062bc684289b4ef09ff Mon Sep 17 00:00:00 2001 From: Casper Welzel Andersen Date: Tue, 2 Jun 2026 14:05:27 +0200 Subject: [PATCH 2/2] Use version 2.0.0 --- .github/workflows/cd_release.yml | 2 +- .github/workflows/ci_tests.yml | 4 ++-- httpx2_auth/__init__.py | 5 ++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cd_release.yml b/.github/workflows/cd_release.yml index 398e7b1..e99f01c 100644 --- a/.github/workflows/cd_release.yml +++ b/.github/workflows/cd_release.yml @@ -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 diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index 8bb72ef..1c48932 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -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' diff --git a/httpx2_auth/__init__.py b/httpx2_auth/__init__.py index 8af5b38..ce3b9cf 100644 --- a/httpx2_auth/__init__.py +++ b/httpx2_auth/__init__.py @@ -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"