Fix typos and normalize old version headings in CHANGELOG.md#6216
Merged
Conversation
|
|
olehermanse
approved these changes
Jul 2, 2026
SimonThalvorsen
approved these changes
Jul 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Requested by Ole Herman · Slack thread
This PR is a small, conservative cleanup pass over
CHANGELOG.md. No entry meaning was changed; edits are limited to a clear typo fix and normalizing old-style version headings to match the modern format.What changed
Typo / grammar fixes (1)
Markdown fixes (0)
Version heading normalization (20)
Older version headings carried a trailing colon and a parenthetical explanation. These were normalized to the modern style used by all recent entries, which is just the version number (
## X.Y.Z).Before / After examples:
## 3.4.5: (Bugfix and stability release)->## 3.4.5## 3.1.3: (Stability release)->## 3.1.3## 3.1.2: (Scalability/efficiency release)->## 3.1.2## 3.1.1: (Bugfix release)->## 3.1.1The full set spans the
3.1.xthrough3.4.xseries (20 headings in total).How
I surveyed every heading in the file and confirmed the modern format is a bare
## X.Y.Z(no colon, no date, no parenthetical). The heading normalization was done mechanically with a targetedsedsubstitution that only touches heading lines matching the version +: (...)pattern, then verified by diffing (only heading lines and the single typo line changed: 21 insertions, 21 deletions). Typo candidates were gathered with a spell checker and each vetted by hand; technical terms, function names, ticket refs, and British spellings were deliberately left untouched.Generated by Claude Code