From d856853a2bab60b535e0ae717c4943c3f4939f7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 29 Sep 2025 15:16:44 +0200 Subject: [PATCH] makefile: also make a commit --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 6570e03..e399d24 100644 --- a/Makefile +++ b/Makefile @@ -27,5 +27,9 @@ bump-version: @# Update version in pyproject.toml @sed -i.bak 's/^version = .*/version = "$(NEW_VERSION)"/' pyproject.toml && rm pyproject.toml.bak @echo "Version bumped to $(NEW_VERSION)" + @# Commit the version bump + @git add mpd/base.py pyproject.toml + @git commit -m "Bump version to $(NEW_VERSION)" + @echo "Committed version bump to $(NEW_VERSION)" .PHONY: test release clean bump-version