Skip to content

Commit

Permalink
Fix: Correctly parse "sign_tags" from config file
Browse files Browse the repository at this point in the history
  • Loading branch information
janfrederik committed Jul 1, 2023
1 parent bc95374 commit 8f44c16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bumpversion/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def _load_configuration(config_file, explicit_config, defaults):
except NoOptionError:
pass # no default value then ;)

for boolvaluename in ("commit", "tag", "dry_run"):
for boolvaluename in ("commit", "tag", "tag_name", "dry_run"):
try:
defaults[boolvaluename] = config.getboolean(
"bumpversion", boolvaluename
Expand Down

0 comments on commit 8f44c16

Please sign in to comment.