From 9cf7c779806e10b25e531cc8f91d0a96f5084cf9 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Tue, 20 Dec 2022 14:38:17 -0600 Subject: [PATCH] build: update bump-version recipe --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3ce6cb3..7d4c158 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,9 @@ types: bump-version: @echo "bumping to version => $(VERSION)" - @sed -i 's/__version__ = ".*"/__version__ = "$(VERSION)"/g' src/viv.py + @sed -i 's/__version__ = ".*"/__version__ = "$(VERSION)"/g' src/viv/viv.py + @git add src/viv/viv.py && git commit -m "chore: bump version" + @git tag v$(VERSION) env: pdm install