Make version a major minor patch#3
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Switches the package version scheme from a four-segment 2.0.1.0 to standard semver 2.0.0, updates CI/CD references accordingly, and removes the badges block from the README.
Changes:
- Set
__version__to"2.0.0"and update the accompanying comment. - Update
ci_tests.ymlwheel/sdist filenames andcd_release.ymlregex to match three-segment versions. - Remove badges section from
README.md.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
httpx2_auth/__init__.py |
Version rolled back to 2.0.0 with updated note. |
.github/workflows/ci_tests.yml |
Install commands reference the new 2.0.0 artifact filenames. |
.github/workflows/cd_release.yml |
Regex broadened to match three-segment versions for future bumps. |
README.md |
Removed badges block. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3 +/- ##
=======================================
Coverage ? 71.31%
=======================================
Files ? 14
Lines ? 917
Branches ? 0
=======================================
Hits ? 654
Misses ? 263
Partials ? 0
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Use major version
2to show that this is a new run of packages releases namedhttpx2-auththat is different fromhttpx-auth.AI Summary
This pull request primarily updates the versioning for the
httpx2_authpackage, rolling back the version from2.0.1.0to2.0.0and making related adjustments across the codebase and CI/CD workflows. Additionally, it removes the badges section from theREADME.md.Versioning and packaging updates:
__version__inhttpx2_auth/__init__.pyto"2.0.0"and updated the versioning note..github/workflows/ci_tests.ymlto use the2.0.0wheel and source distribution instead of2.0.1.0..github/workflows/cd_release.ymlto match any version, not just2.x.x.x, for release automation.Documentation:
README.mdfor a cleaner appearance.