Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LAST_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.2
0.7.0
15 changes: 15 additions & 0 deletions docs/nav/development/release-notes.md
Original file line number Diff line number Diff line change
@@ -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/)
Expand Down
2 changes: 1 addition & 1 deletion pycodeloop/__init__.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pycodeloop"
version = "0.6.2"
version = "0.7.0"
authors = [
{ name="Fernando Celmer", email="email@fernandocelmer.com" },
]
Expand Down Expand Up @@ -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 <email@fernandocelmer.com>"]
readme = "README.md"
Expand Down
Loading