We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
bump-my-version
pyproject.toml
Make sure the following commands work:
bumpversion candidate --no-tag
bumpversion --no-tag patch
bumpversion --no-tag minor
bumpversion --no-tag major
bumpversion release --no-tag
Don't run make bumpversion-patch or make bumpversion-release because those commands merge to stable. Just call bumpversion or bumpmyversion directly
make bumpversion-patch
make bumpversion-release
The text was updated successfully, but these errors were encountered:
frances-h
Successfully merging a pull request may close this issue.
Problem Description
bump-my-version
.Expected behavior
bump-my-version
to version bump sdv.pyproject.toml
read from that location.Technical Details
Make sure the following commands work:
bumpversion candidate --no-tag
This should bump to the next candidate version (eg. 1.1.1.dev0 -> 1.1.1.dev1)
bumpversion --no-tag patch
This should bump to the next patch (eg. 1.1.1.dev0 -> 1.1.2.dev0)
bumpversion --no-tag minor
This should bump to the next minor (eg. 1.1.0.dev0 ->1.2.0.dev0)
bumpversion --no-tag major
This should bump to the next major version (eg. 1.1.0.dev0 -> 2.0.0.dev0)
bumpversion release --no-tag
This should bump to a release version (Eg. 1.2.0.dev0 -> 1.2.0)
Don't run
make bumpversion-patch
ormake bumpversion-release
because those commands merge to stable. Just call bumpversion or bumpmyversion directlyThe text was updated successfully, but these errors were encountered: