fix bumpminor.sh script

This commit is contained in:
2026-02-06 15:51:48 -05:00
parent 3748a6fc8f
commit 5dca9369dd
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -2,10 +2,10 @@
uv version --bump patch
VER=$(uv version --short)
sed -i "s/__version__ = \"[0-9.]*\"\(.*\)$/__version__ = \"$VER\"\1/" moninbox/const.py
sed -i "s/__version__ = \"[0-9.]*\"\(.*\)$/__version__ = \"$VER\"\1/" hbd/__init__.py
# commit pyproject.toml
git commit -m "version $VER" pyproject.toml moninbox/const.py
git commit -m "version $VER" pyproject.toml hbd/__init__.py
git push
# tag version
git tag -a v$VER -m "Version $VER"