diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d05dec66d1..97a8438c69 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -3,7 +3,7 @@ "libs/deepagents": "0.6.12", "libs/acp": "0.0.8", "libs/code": "0.1.28", - "libs/talon": "0.0.1", + "libs/talon": "0.0.2", "libs/partners/daytona": "0.0.7", "libs/partners/modal": "0.0.5", "libs/partners/runloop": "0.0.6", diff --git a/libs/talon/CHANGELOG.md b/libs/talon/CHANGELOG.md index 6361e43e86..a170694c40 100644 --- a/libs/talon/CHANGELOG.md +++ b/libs/talon/CHANGELOG.md @@ -1,3 +1,22 @@ # Changelog +## [0.0.2](https://github.com/langchain-ai/deepagents/compare/deepagents-talon==0.0.1...deepagents-talon==0.0.2) (2026-06-29) + + +### Features + +* **talon:** `DEEPAGENTS_TALON_RECURSION_LIMIT` env var ([#4354](https://github.com/langchain-ai/deepagents/issues/4354)) ([82d1eac](https://github.com/langchain-ai/deepagents/commit/82d1eac59a43f096096e86849733aa716adb18fc)) +* **talon:** add reaction approval routing ([#4345](https://github.com/langchain-ai/deepagents/issues/4345)) ([3fe8c0c](https://github.com/langchain-ai/deepagents/commit/3fe8c0c35536626f583df08573469506b9529706)) +* **talon:** add Telegram channel adapter, CLI wiring, and offset persistence ([#4097](https://github.com/langchain-ai/deepagents/issues/4097)) ([7c87cec](https://github.com/langchain-ai/deepagents/commit/7c87ceca069874db8555705efab3973301baa1cb)) +* **talon:** add tool approval env override ([#4349](https://github.com/langchain-ai/deepagents/issues/4349)) ([d26481d](https://github.com/langchain-ai/deepagents/commit/d26481da615881bae4401dfa485ad925945e667a)) +* **talon:** audit reaction approval attempts ([#4348](https://github.com/langchain-ai/deepagents/issues/4348)) ([d7895c4](https://github.com/langchain-ai/deepagents/commit/d7895c4f9b996ad6fe194936bbeaa8beea21e913)) +* **talon:** ingest Telegram approval reactions ([#4346](https://github.com/langchain-ai/deepagents/issues/4346)) ([437af0b](https://github.com/langchain-ai/deepagents/commit/437af0bf79332b20ae0c1883c3cc4d91a98c2457)) + + +### Bug Fixes + +* **talon:** default workspace to current directory ([#4099](https://github.com/langchain-ai/deepagents/issues/4099)) ([5e337ae](https://github.com/langchain-ai/deepagents/commit/5e337ae50a76bc174b752be187e62698a389cbe6)) + +## Changelog + All notable changes to this project will be documented in this file. diff --git a/libs/talon/deepagents_talon/_version.py b/libs/talon/deepagents_talon/_version.py index 78faa6842f..f85d1409e4 100644 --- a/libs/talon/deepagents_talon/_version.py +++ b/libs/talon/deepagents_talon/_version.py @@ -1,3 +1,5 @@ """Version marker managed by release-please.""" -__version__ = "0.0.1" +# Keep the `x-release-please-version` annotation — release-please uses it to +# bump `__version__` in sync with `pyproject.toml` on every release PR. +__version__ = "0.0.2" # x-release-please-version diff --git a/libs/talon/pyproject.toml b/libs/talon/pyproject.toml index 2b16738fae..797d977c40 100644 --- a/libs/talon/pyproject.toml +++ b/libs/talon/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "deepagents-talon" -version = "0.0.1" +version = "0.0.2" description = "Local runtime host for long-running Deep Agents channels and schedules (experimental)" readme = "README.md" requires-python = ">=3.11" diff --git a/libs/talon/uv.lock b/libs/talon/uv.lock index 6244677e84..23c8d25e08 100644 --- a/libs/talon/uv.lock +++ b/libs/talon/uv.lock @@ -904,7 +904,7 @@ test = [ [[package]] name = "deepagents-talon" -version = "0.0.1" +version = "0.0.2" source = { editable = "." } dependencies = [ { name = "deepagents" },