From 5328a95addec1f663f75f8cf87757a5f44eba60f Mon Sep 17 00:00:00 2001 From: Xubin Ren <52506698+Re-bin@users.noreply.github.com> Date: Sat, 25 Jul 2026 02:56:01 +0800 Subject: [PATCH] chore(release): prepare v0.3.0 --- nanobot/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nanobot/__init__.py b/nanobot/__init__.py index 5805a5b1..e13a729d 100644 --- a/nanobot/__init__.py +++ b/nanobot/__init__.py @@ -22,7 +22,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.2.2" + return _read_pyproject_version() or "0.3.0" __version__ = _resolve_version() diff --git a/pyproject.toml b/pyproject.toml index b2394e22..da5dede4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "nanobot-ai" -version = "0.2.2" +version = "0.3.0" description = "A lightweight personal AI assistant framework" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.11"