From 5bdf4d327463cda1e81176d546fbd2baf1ce67f4 Mon Sep 17 00:00:00 2001 From: jaseg Date: Mon, 15 Dec 2025 23:09:07 +0100 Subject: [PATCH] package.py: Adjust kicad packaging message --- package.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.py b/package.py index a11a9da..b20ff43 100644 --- a/package.py +++ b/package.py @@ -111,7 +111,7 @@ def do_release(dry_run): if not dry_run: print('Create git commit') - subprocess.run(['git', 'commit', '-m', f'Version {version}', '--no-edit'], check=True, capture_output=True) + subprocess.run(['git', 'commit', '-m', f'KiCad package version {version}', '--no-edit'], check=True, capture_output=True) res = subprocess.run('git rev-parse --short HEAD'.split(), check=True, capture_output=True, text=True) print(f'Created commit {res.stdout.strip()}') print(f'Creating and signing version tag v{version}')