diff --git a/nanobot/__init__.py b/nanobot/__init__.py index 0bce848d..5e6954d9 100644 --- a/nanobot/__init__.py +++ b/nanobot/__init__.py @@ -21,7 +21,7 @@ def _resolve_version() -> str: return _pkg_version("nanobot-ai") except PackageNotFoundError: # Source checkouts often import nanobot without installed dist-info. - return _read_pyproject_version() or "0.1.5" + return _read_pyproject_version() or "0.1.5.post1" __version__ = _resolve_version() diff --git a/pyproject.toml b/pyproject.toml index 13e71339..f828f3cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "nanobot-ai" -version = "0.1.5" +version = "0.1.5.post1" description = "A lightweight personal AI assistant framework" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.11"