-
-
Notifications
You must be signed in to change notification settings - Fork 281
Support bumping local version #302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
type: feature
A new enhacement proposal
Comments
Seems related to #150 |
That would be great. I will create a PR passing the flag |
4 tasks
@woile PR created :) |
Released on |
4 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Description
I am working on some projects where the version is a combination of the a public api version + our local version.
Example:
5.3.1+1.0.0
.So when we bump we actually wants to bump only the local version like
5.3.1+1.0.0
->5.3.1+1.1.0
, butcz
completely ignores the local version and only bumps the first release like:This does seems like would be a breaking change though...
Possible Solution
A possible solution would be to modify the semver_generator() to check if the local version complies with semver and bump the local version instead. The method would return the entire version like
5.3.1+1.1.0
.If you accept, I will be happy to create a PR with the changes.
Additional context
References: Python 440 Local version
The text was updated successfully, but these errors were encountered: