From 42948e76cb7e7b6675c74edaadb97bf06154873f Mon Sep 17 00:00:00 2001 From: Ruslan Strazhnyk Date: Wed, 22 Jul 2026 23:50:01 +0200 Subject: [PATCH] release: v1.21.2 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ main.go | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a0ab31..b4bb84e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,30 @@ All notable changes to qmax-code. Versions follow [Semantic Versioning](https:// ## [Unreleased] +## [1.21.2] - 2026-07-22 + +### Fixed +- Typing a new message while the agent is processing no longer drops spaces. + Bubble Tea delivers the spacebar as `tea.KeySpace` (not `tea.KeyRunes`); + the turn-running input viewport was missing that case so every space was + silently discarded — messages appeared as a single run-on word (#154). + +## [1.21.1] - 2026-07-18 + +### Fixed +- The input panel is no longer overwritten or displaced by streamed agent + output while a turn is running (#153). + +## [1.21.0] - 2026-07-18 + +### Added +- Exposure Receipt: a per-session log of every LLM and cloud-API egress + (QUA-1316). Guards all egress paths and includes concurrent-body snapshot + tests (#149, #150, #151). + +### Changed +- Terminal input status layout improvements (#152). + ## [1.20.9] - 2026-07-13 ### Fixed diff --git a/main.go b/main.go index de06856..2e4ec49 100644 --- a/main.go +++ b/main.go @@ -20,7 +20,7 @@ import ( ) // Version is set at build time via -ldflags "-X main.Version=x.y.z" -var Version = "1.20.9" +var Version = "1.21.2" const Name = "qmax-code"