diff --git a/README.md b/README.md index c9d89e88..21853955 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,13 @@ ## ๐Ÿ“ข News +- **2026-04-28** ๐ŸŒ Olostep web search, Hugging Face provider, safer workspace-tool interruptions. +- **2026-04-27** ๐Ÿ’ฌ `/history` command, smarter session replay caps, smoother Discord / Slack / Telegram threads. +- **2026-04-26** ๐Ÿงญ Natural cron reminders, thread-aware restarts, safer local provider and shell behavior. +- **2026-04-25** ๐Ÿงฉ `ask_user` choices, macOS LaunchAgent deployment, MSTeams stale-reference cleanup. +- **2026-04-24** ๐ŸŽฅ Video attachments for Telegram / WebSocket / WebUI, DeepSeek thinking control, faster document startup. +- **2026-04-23** ๐Ÿงต Discord thread sessions, Telegram inline buttons, structured tool progress updates. +- **2026-04-22** ๐Ÿ”Ž GitHub Copilot GPT-5 / o-series support, configurable web fetch, WebUI image uploads. - **2026-04-21** ๐Ÿš€ Released **v0.1.5.post2** โ€” Windows & Python 3.14 support, Office document reading, SSE streaming for the OpenAI-compatible API, and stronger reliability across sessions, memory, and channels. Please see [release notes](https://github.com/HKUDS/nanobot/releases/tag/v0.1.5.post2) for details. - **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. diff --git a/nanobot/__init__.py b/nanobot/__init__.py index e2428d2d..e6fdbf0b 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.post2" + return _read_pyproject_version() or "0.1.5.post3" __version__ = _resolve_version() diff --git a/pyproject.toml b/pyproject.toml index 095c04a6..36185f39 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "nanobot-ai" -version = "0.1.5.post2" +version = "0.1.5.post3" description = "A lightweight personal AI assistant framework" readme = { file = "README.md", content-type = "text/markdown" } requires-python = ">=3.11"