release: v1.47.0#251
Conversation
PR SummaryLow Risk Overview No functional code changes appear in this diff—only the Reviewed by Cursor Bugbot for commit 63d009b. Bugbot is set up for automated code reviews on this repo. Configure here. |
There was a problem hiding this comment.
Code Review
This pull request updates the version of labelle_cli to 1.47.0 in build.zig.zon. The review feedback identifies two encoding-related issues: the introduction of an invalid Byte Order Mark (BOM) at the start of the file, and the corruption of an em-dash character in a comment. Both issues should be resolved to ensure proper parsing by the Zig compiler and to maintain comment readability.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| @@ -1,11 +1,11 @@ | |||
| .{ | |||
| .{ | |||
There was a problem hiding this comment.
| .dependencies = .{ | ||
| // Issue #217: labelle-cli is a thin driver over the standalone | ||
| // labelle-assembler binary — it no longer compiles in the | ||
| // labelle-assembler binary — it no longer compiles in the |
There was a problem hiding this comment.
The em-dash (—) in the comment has been corrupted into — due to an encoding mismatch (likely UTF-8 interpreted as Windows-1252/ISO-8859-1 and saved back). Please restore it to a proper em-dash or a standard hyphen to maintain comment readability.
// labelle-assembler binary — it no longer compiles in the
Version bump for the work merged since v1.46.2: labelle run perf/CI flags --headless / --uncapped / --ticks / --profile (#245), labelle doctor desktop dependency preflight + SDL2 provisioning with build/run auto-wiring (#249), and the Versions Integration Test libsdl2-dev CI fix (#250). Tag v1.47.0 will be pushed after merge to trigger the R2 binary release.