Ask for setting: update_changelog_on_bump
(self)
| 282 | return major_version_zero |
| 283 | |
| 284 | def _ask_update_changelog_on_bump(self) -> bool: |
| 285 | """Ask for setting: update_changelog_on_bump""" |
| 286 | update_changelog_on_bump: bool = questionary.confirm( |
| 287 | "Create changelog automatically on bump", |
| 288 | default=True, |
| 289 | auto_enter=True, |
| 290 | ).unsafe_ask() |
| 291 | return update_changelog_on_bump |
| 292 | |
| 293 | def _get_config_data(self) -> dict[str, Any]: |
| 294 | CZ_HOOK_CONFIG = { |