From c24c9d33a58ab0ef6020affcc441c729f7bad0de Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 2 Aug 2023 16:23:34 -0300 Subject: [PATCH] Fixed comment in -dev bump --- scripts/versionbump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/versionbump.py b/scripts/versionbump.py index 67e1a0b2f..2704cb6cb 100644 --- a/scripts/versionbump.py +++ b/scripts/versionbump.py @@ -66,7 +66,7 @@ def main(): git_commands_dev = [ ["git", "add", "aider/__init__.py"], - ["git", "commit", "-m", f"set version to {new_version}-dev"], + ["git", "commit", "-m", f"set version to {incremented_version}-dev"], ["git", "push", "origin"], ]