diff --git a/hbd/__init__.py b/hbd/__init__.py index 8fb72b6..e323337 100644 --- a/hbd/__init__.py +++ b/hbd/__init__.py @@ -6,6 +6,6 @@ start moving functionality into the package. """ __all__ = ["main", "__version__"] -__version__ = "5.0" +__version__ = "5.0.1" from .cli import main diff --git a/pyproject.toml b/pyproject.toml index e65cfc7..a49d68a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "hbd" -version = "5.0" +version = "5.0.1" description = "Heartbeat daemon (hbd) — receive heartbeats and act on them" readme = "README.md" requires-python = ">=3.10" @@ -44,4 +44,4 @@ where = ["."] include = ["hbd*"] [tool.setuptools.package-data] -"hbd" = ["*.yaml", "static/*", "static/*/*", "templates/*"] \ No newline at end of file +"hbd" = ["*.yaml", "static/*", "static/*/*", "templates/*"] diff --git a/scripts/bumpminor.sh b/scripts/bumpminor.sh index cbcccf3..f0703bd 100755 --- a/scripts/bumpminor.sh +++ b/scripts/bumpminor.sh @@ -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"