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
Config:
[bumpversion] current_version = 0.3.1 commit = True tag = True allow_dirty = True parse = (?P<major>\d+)\. (?P<minor>\d+)\. (?P<patch>\d+) ((?P<release>\D+)(?P<build>\d*))? serialize = {major}.{minor}.{patch}{release}{build} {major}.{minor}.{patch}{release} {major}.{minor}.{patch} [bumpversion:part:release] optional_value = g first_value = g values = dev a b g [bumpversion:part:build]
When running
bumpversion -n --verbose --current-version "0.2.3" build --no-configured-files
I get new_version=0.2.301. Shouldn't we be getting new_version=0.2.3g1 instead? Nevertheless, I can get desired result changing serialize as below.
new_version=0.2.301
new_version=0.2.3g1
serialize
serialize = {major}.{minor}.{patch}{release}{build} {major}.{minor}.{patch}g{build} {major}.{minor}.{patch}{release} {major}.{minor}.{patch}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Config:
When running
I get
new_version=0.2.301
. Shouldn't we be gettingnew_version=0.2.3g1
instead?Nevertheless, I can get desired result changing
serialize
as below.serialize = {major}.{minor}.{patch}{release}{build} {major}.{minor}.{patch}g{build} {major}.{minor}.{patch}{release} {major}.{minor}.{patch}
The text was updated successfully, but these errors were encountered: