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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,19 @@ All notable changes to qmax-code. Versions follow [Semantic Versioning](https://

## [Unreleased]

## [1.20.3] - 2026-06-30

### Fixed
- MCP server mode now reserves stdout exclusively for JSON-RPC responses,
redirecting stray tool/TUI output to stderr so Codex and Claude Code rmcp
transports are not killed by non-JSON output.
- MCP tool dispatch panics now return JSON-RPC internal errors instead of
crashing the subprocess and closing the transport.

### Tests
- Added regression coverage for clean MCP JSON-RPC output and RunServer stdout
redirection.

## [1.20.2] - 2026-06-29

### Added
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
)

// Version is set at build time via -ldflags "-X main.Version=x.y.z"
var Version = "1.20.2"
var Version = "1.20.3"

const Name = "qmax-code"

Expand Down
Loading