feat: Add --show-release-notes option to control release notes display

This commit is contained in:
Paul Gauthier (aider) 2024-11-19 17:33:16 -08:00
parent c057b00e08
commit 90a28e31e8
2 changed files with 14 additions and 1 deletions

View file

@ -620,6 +620,12 @@ def get_parser(default_config_files, git_root):
help="Check for new aider versions on launch",
default=True,
)
group.add_argument(
"--show-release-notes",
action=argparse.BooleanOptionalAction,
help="Show release notes on first run of new version (default: None, ask user)",
default=None,
)
group.add_argument(
"--install-main-branch",
action="store_true",