From c54740c617746e77779f88c1cbbf02e44d5285ef Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 11 Jul 2023 18:44:28 -0700 Subject: [PATCH] Show version on startup --- aider/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aider/main.py b/aider/main.py index b2a584aa7..19ee5590e 100644 --- a/aider/main.py +++ b/aider/main.py @@ -293,6 +293,8 @@ def main(args=None, input=None, output=None): dry_run=args.dry_run, ) + io.tool_output(f"Aider v{__version__}") + if not git_root and args.git: if io.confirm_ask("No git repo found, create one to track GPT's changes (recommended)?"): repo = git.Repo.init(os.getcwd())