docs: sync pure-simdjson version references after v0.1.7 bump - #50
Merged
Conversation
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.
Summary
PR #48 bumped
pure-simdjsonv0.1.4 → v0.1.7 and fixed theci.ymlbootstrap pin, but left 13 stalev0.1.4references in prose. This syncs them.Strategy
Not a blanket find/replace — the references fall into two categories:
Stays pinned (bumped to v0.1.7):
NOTICE.md×4LICENSE/NOTICE, is the point of the file.docs/simd-deployment.md— nesting limitdefaultMaxDepth = 1024in v0.1.7, so "accepts at most 1,023 containers,ErrDepthLimitExceededat 1,024" holds.Unpinned (now defers to
go.mod):README.md— opt-in sectiongo.mod"docs— introgo.modnamed as the authoritative versiondocs— automatic bootstrapdocs— bootstrap guide linkblob/v0.1.4/→blob/main/docs— air-gappedgo.modversion"docs— corporate mirrorgo.modversion"docs— integrity tablego.sumchecksum claim is version-independentCHANGELOG.mdis deliberately untouched — it is an append-only historical record, and itsv0.1.4reference was accurate when written.Why unpin rather than bump everything
Bumping all 13 would recreate the recurring problem #49 exists to stop: every future
pure-simdjsonbump needs the same manual sweep across three files, with nothing to catch a miss. That is exactly how these went stale. Deferring prose togo.modleaves only the two sites where naming a specific release carries real meaning.Verification
grep -rn "v0\.1\.4" --include="*.md"returns nothing outsideCHANGELOG.mdand.planning/Relates to #49 (the underlying pattern — CI pin derivation — is not addressed here).