diff --git a/LAST_VERSION b/LAST_VERSION index b616048..faef31a 100644 --- a/LAST_VERSION +++ b/LAST_VERSION @@ -1 +1 @@ -0.6.2 +0.7.0 diff --git a/docs/nav/development/release-notes.md b/docs/nav/development/release-notes.md index 3c9733d..f4668ce 100644 --- a/docs/nav/development/release-notes.md +++ b/docs/nav/development/release-notes.md @@ -1,5 +1,20 @@ # Release Notes +## v0.7.0 + +- [📦 PyPI - Build 0.7.0](https://pypi.org/project/pycodeloop/0.7.0/) +- [🪲 Bug: Fix Agent crash when a dangerous tool's preview() gets malformed arguments (#30)](https://github.com/dotflow-io/pycodeloop/pull/31) +- [🪲 Bug: Fix permanent provider fallback across run() calls (#18)](https://github.com/dotflow-io/pycodeloop/pull/32) +- [🪲 Bug: Fix workspace jail global mutable state (#21)](https://github.com/dotflow-io/pycodeloop/pull/33) +- [⚠️ Security: Gate EnvTool behind confirmation (#24)](https://github.com/dotflow-io/pycodeloop/pull/34) +- [🪲 Bug: Fill in missing context-window entries (#16)](https://github.com/dotflow-io/pycodeloop/pull/35) +- [🪲 Bug: Fix Session.messages race between parallel tool calls and compaction (#25)](https://github.com/dotflow-io/pycodeloop/pull/36) +- [🪲 Bug: Fix GenericProvider race between complete() and reload() (#28)](https://github.com/dotflow-io/pycodeloop/pull/44) +- [🪲 Bug: Stream via SSE for custom response_paths configs (#17)](https://github.com/dotflow-io/pycodeloop/pull/45) +- [🪲 Bug: Forward cancel_event to DelegateTool and time out hung sub-agents (#23)](https://github.com/dotflow-io/pycodeloop/pull/46) +- [⚙️ Feature: Include the diff preview in chat/autoApproved](https://github.com/dotflow-io/pycodeloop/pull/47) +- [⚙️ Feature: Honor an explicit context_window in provider JSON config instead of only the model-name lookup (#27)](https://github.com/dotflow-io/pycodeloop/pull/48) + ## v0.6.2 - [📦 PyPI - Build 0.6.2](https://pypi.org/project/pycodeloop/0.6.2/) diff --git a/pycodeloop/__init__.py b/pycodeloop/__init__.py index 9b74a00..7e6ebfe 100644 --- a/pycodeloop/__init__.py +++ b/pycodeloop/__init__.py @@ -1,6 +1,6 @@ """CodeLoop __init__ module.""" -__version__ = "0.6.2" +__version__ = "0.7.0" __description__ = "🤖 CodeLoop drives an agent through your code." from .core.agent import Agent diff --git a/pyproject.toml b/pyproject.toml index 405533c..69e94d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pycodeloop" -version = "0.6.2" +version = "0.7.0" authors = [ { name="Fernando Celmer", email="email@fernandocelmer.com" }, ] @@ -51,7 +51,7 @@ mcp = ["mcp"] [tool.poetry] name = "pycodeloop" -version = "0.6.2" +version = "0.7.0" description = "CodeLoop — a multi-provider agentic coding assistant, terminal or VS Code." authors = ["Fernando Celmer "] readme = "README.md"