diff --git a/pyproject.toml b/pyproject.toml index 35f1acfe..b1b245e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "tau-ai" -version = "0.3.2" +version = "0.3.3" description = "A Python implementation of a minimalist Pi-style coding-agent harness." readme = "README.md" license = "MIT" diff --git a/src/tau_coding/data/release-notes/releases.json b/src/tau_coding/data/release-notes/releases.json index d5c252e4..a347cc57 100644 --- a/src/tau_coding/data/release-notes/releases.json +++ b/src/tau_coding/data/release-notes/releases.json @@ -1,4 +1,16 @@ [ + { + "version": "0.3.3", + "date": "2026-07-25", + "sections": { + "New": [ + "Add direct Anthropic support for Claude Opus 5, including its 1M-token context window and adaptive-thinking effort mappings." + ], + "Changed": [ + "Highlight terminal-command prompt input, border, and prefix with the active theme's running-tool color." + ] + } + }, { "version": "0.3.2", "date": "2026-07-24", diff --git a/tests/test_tui_app.py b/tests/test_tui_app.py index e297b2d7..31e43967 100644 --- a/tests/test_tui_app.py +++ b/tests/test_tui_app.py @@ -630,7 +630,7 @@ def test_session_sidebar_brand_includes_current_version() -> None: console.print(_sidebar_brand(theme=TAU_DARK_THEME)) - assert "τ = 2π 0.3.2" in console.export_text() + assert "τ = 2π 0.3.3" in console.export_text() def test_session_sidebar_uses_prominent_title_and_accented_section_headers() -> None: diff --git a/uv.lock b/uv.lock index 78f28cd0..20baaacc 100644 --- a/uv.lock +++ b/uv.lock @@ -527,7 +527,7 @@ wheels = [ [[package]] name = "tau-ai" -version = "0.3.2" +version = "0.3.3" source = { editable = "." } dependencies = [ { name = "anyio" },