Skip to content

Commit d4894e5

Browse files
committed
fix(commands/bump): prevent using incremental changelog when it is set to false in config
1 parent fc54b51 commit d4894e5

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

commitizen/commands/bump.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,9 @@ def __call__(self) -> None: # noqa: C901
293293
"unreleased_version": new_tag_version,
294294
"template": self.template,
295295
"extras": self.extras,
296-
"incremental": True,
296+
"incremental": self.config.mutated_settings.get(
297+
"changelog_incremental", True
298+
),
297299
"dry_run": True,
298300
},
299301
)
@@ -305,7 +307,9 @@ def __call__(self) -> None: # noqa: C901
305307
self.config,
306308
{
307309
"unreleased_version": new_tag_version,
308-
"incremental": True,
310+
"incremental": self.config.mutated_settings.get(
311+
"changelog_incremental", True
312+
),
309313
"dry_run": dry_run,
310314
"template": self.template,
311315
"extras": self.extras,

commitizen/config/base_config.py

+6
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,16 @@ def __init__(self):
1010
self._settings: Settings = DEFAULT_SETTINGS.copy()
1111
self.encoding = self.settings["encoding"]
1212
self._path: Path | None = None
13+
self._settings_from_configs: Settings = {}
1314

1415
@property
1516
def settings(self) -> Settings:
1617
return self._settings
1718

19+
@property
20+
def mutated_settings(self) -> Settings:
21+
return self._settings_from_configs
22+
1823
@property
1924
def path(self) -> Path | None:
2025
return self._path
@@ -29,6 +34,7 @@ def set_key(self, key, value):
2934

3035
def update(self, data: Settings) -> None:
3136
self._settings.update(data)
37+
self._settings_from_configs.update(data)
3238

3339
def add_path(self, path: str | Path) -> None:
3440
self._path = Path(path)

0 commit comments

Comments
 (0)