We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c8f89a commit 0002cedCopy full SHA for 0002ced
commitizen/commands/bump.py
@@ -310,14 +310,11 @@ def __call__(self) -> None:
310
changelog_file_name = None
311
dry_run = self.arguments["dry_run"]
312
if self.changelog_flag:
313
- incremental_setting = self.config.settings.get("changelog_incremental")
314
changelog_args = {
315
"unreleased_version": new_tag_version,
316
"template": self.template,
317
"extras": self.extras,
318
- "incremental": incremental_setting
319
- if incremental_setting is not None
320
- else True,
+ "incremental": self.config.settings.get("changelog_incremental", True),
321
"dry_run": dry_run,
322
# governs logic for merge_prerelease
323
"during_version_bump": self.arguments["prerelease"] is None,
0 commit comments