diff --git a/CHANGELOG.md b/CHANGELOG.md index cb9ce94..91afb5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ ## [Unreleased] +## [0.9.9] - 2026-07-16 + +### 新增 +- 新增远程桌面安装与连接器探测能力增强 (#16) + ## [0.9.8] - 2026-07-15 ### 新增 diff --git a/README.md b/README.md index 9d35ecc..a906398 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@

Python 3.11+ License: MIT - Version + Version PyPI Code Style: Ruff GitHub stars diff --git a/pyproject.toml b/pyproject.toml index 9722236..3e6e4ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "octop" -version = "0.9.8" +version = "0.9.9" description = "Smarter self-hosted AI assistant for multiple users and agents, built on harness-agent" readme = "README.md" license = { text = "MIT" } diff --git a/src/octop/__init__.py b/src/octop/__init__.py index 873c42e..c74f1c7 100644 --- a/src/octop/__init__.py +++ b/src/octop/__init__.py @@ -2,4 +2,4 @@ from __future__ import annotations -__version__ = "0.9.8" +__version__ = "0.9.9"