From 79234d237e840b144c73926a0cc1df6e810335d8 Mon Sep 17 00:00:00 2001 From: Xubin Ren Date: Mon, 6 Apr 2026 11:26:07 +0000 Subject: [PATCH] chore: bump version to 0.1.5 --- 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 11833c696..433dbe139 100644 --- a/nanobot/__init__.py +++ b/nanobot/__init__.py @@ -2,7 +2,7 @@ nanobot - A lightweight AI agent framework """ -__version__ = "0.1.4.post6" +__version__ = "0.1.5" __logo__ = "🐈" from nanobot.nanobot import Nanobot, RunResult diff --git a/pyproject.toml b/pyproject.toml index ae87c7beb..a5807f962 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "nanobot-ai" -version = "0.1.4.post6" +version = "0.1.5" description = "A lightweight personal AI assistant framework" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.11"