From 950dddec499fbbe0353e997158c99808f0bb41e1 Mon Sep 17 00:00:00 2001 From: Xubin Ren Date: Tue, 21 Apr 2026 17:25:08 +0000 Subject: [PATCH] chore: bump version to 0.1.5.post2 --- README.md | 14 ++++++++++---- nanobot/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e592f16e..5d10ae6b 100644 --- a/README.md +++ b/README.md @@ -23,20 +23,26 @@ ## ๐Ÿ“ข News +- **2026-04-20** ๐ŸŽจ Kimi K2.6 support, Telegram long-message split, WebUI typography & dark-mode polish. +- **2026-04-19** ๐ŸŒ WebUI i18n locale switcher, atomic session writes with auto-repair. +- **2026-04-18** ๐Ÿงช Initial WebUI chat, smarter setup wizard menus, WebSocket multi-chat multiplexing. +- **2026-04-17** ๐ŸชŸ Windows & Python 3.14 CI, Dream line-age memory, email self-loop guard. +- **2026-04-16** ๐Ÿ“ก SSE streaming for OpenAI-compatible API, Discord channel allow-list. +- **2026-04-15** ๐ŸŽ›๏ธ LM Studio & nullable API keys, MiniMax thinking endpoint, runtime SelfTool. - **2026-04-14** ๐Ÿš€ Released **v0.1.5.post1** โ€” Dream skill discovery, mid-turn follow-up injection, WebSocket channel, and deeper channel integrations. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.5.post1) for details. - **2026-04-13** ๐Ÿ›ก๏ธ Agent turn hardened โ€” user messages persisted early, auto-compact skips active tasks. - **2026-04-12** ๐Ÿ”’ Lark global domain support, Dream learns discovered skills, shell sandbox tightened. - **2026-04-11** โšก Context compact shrinks sessions on the fly; Kagi web search; QQ & WeCom full media. + +
+Earlier news + - **2026-04-10** ๐Ÿ““ Notebook editing tool, multiple MCP servers, Feishu streaming & done-emoji. - **2026-04-09** ๐Ÿ”Œ WebSocket channel, unified cross-channel session, `disabled_skills` config. - **2026-04-08** ๐Ÿ“ค API file uploads, OpenAI reasoning auto-routing with Responses fallback. - **2026-04-07** ๐Ÿง  Anthropic adaptive thinking, MCP resources & prompts exposed as tools. - **2026-04-06** ๐Ÿ›ฐ๏ธ Langfuse observability, unified Whisper transcription, email attachments. - **2026-04-05** ๐Ÿš€ Released **v0.1.5** โ€” sturdier long-running tasks, Dream two-stage memory, production-ready sandboxing and programming Agent SDK. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.5) for details. - -
-Earlier news - - **2026-04-04** ๐Ÿš€ Jinja2 response templates, Dream memory hardened, smarter retry handling. - **2026-04-03** ๐Ÿง  Xiaomi MiMo provider, chain-of-thought reasoning visible, Telegram UX polish. - **2026-04-02** ๐Ÿงฑ Long-running tasks run more reliably โ€” core runtime hardening. diff --git a/nanobot/__init__.py b/nanobot/__init__.py index 5e6954d9..e2428d2d 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.post1" + return _read_pyproject_version() or "0.1.5.post2" __version__ = _resolve_version() diff --git a/pyproject.toml b/pyproject.toml index e7282abf..1e4ca97d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "nanobot-ai" -version = "0.1.5.post1" +version = "0.1.5.post2" description = "A lightweight personal AI assistant framework" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.11"