Skip to content

Commit f7465ad

Browse files
committed
chore: bump version to 0.1.87
1 parent 7734df4 commit f7465ad

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.87] - 2026-03-06
11+
12+
### Changed
13+
- Increased the default shell tool timeout to two minutes to reduce premature command termination in normal workflows.
14+
15+
### Fixed
16+
- Removed a flaky headless CLI system test from the release train.
17+
- Stabilized tmux discover-tool system coverage by waiting for rendered scan stats before asserting output.
18+
1019
## [0.1.86] - 2026-03-06
1120

1221
### Added

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
55
[project]
66
name = "tunacode-cli"
77

8-
version = "0.1.86"
8+
version = "0.1.87"
99
description = "Your agentic CLI developer."
1010
keywords = ["cli", "agent", "development", "automation"]
1111
readme = "README.md"

src/tunacode/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
MB = KB * 1024
1919

2020
APP_NAME = "TunaCode"
21-
APP_VERSION = "0.1.86"
21+
APP_VERSION = "0.1.87"
2222

2323

2424
GUIDE_FILE_NAME = "AGENTS.md"

tests/system/cli/test_tmux_tools.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,8 @@ def test_discover_tool() -> None:
254254
"You MUST call the discover tool. Query: where tools are defined. "
255255
"Do not answer until the tool runs."
256256
)
257-
output = wait_for_tool(s, "discover")
257+
wait_for_tool(s, "discover")
258+
output = wait_for_text(s, "scanned:")
258259
assert "scanned:" in output, f"Expected 'scanned:' stats in discover output:\n{output}"
259260

260261

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)