Correct seven subpackage versions to the next sequential release - #4062
Merged
ChrisRackauckas merged 1 commit intoJul 29, 2026
Merged
Conversation
Each of these carries a version on master that jumps over one or more
unregistered versions, so AutoMerge rejects the registration under the
sequential version number guideline. Lowering each to the patch
successor of the latest registered version lets them register normally;
the intervening bumps were never released, so no history is lost.
DiffEqDevTools 3.1.6 -> 3.1.4 (registered: 3.1.3)
OrdinaryDiffEqLowStorageRK 3.2.4 -> 3.2.2 (registered: 3.2.1)
OrdinaryDiffEqRosenbrock 2.6.2 -> 2.6.1 (registered: 2.6.0)
OrdinaryDiffEqSDIRK 2.8.3 -> 2.8.2 (registered: 2.8.1)
OrdinaryDiffEqSSPRK 2.2.3 -> 2.2.1 (registered: 2.2.0)
OrdinaryDiffEqTsit5 2.1.3 -> 2.1.1 (registered: 2.1.0)
OrdinaryDiffEqVerner 2.2.3 -> 2.2.1 (registered: 2.2.0)
DiffEqDevTools 4.0.0 and OrdinaryDiffEqCore 5.0.0 are yanked in General,
so the highest live DiffEqDevTools release is 3.1.3 rather than 4.0.0.
No sibling compat bound is invalidated by lowering these: every in-repo
bound on the seven is major-level, except OrdinaryDiffEqBDF's
OrdinaryDiffEqSDIRK = "2.5", which 2.8.2 still satisfies.
Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01VNsHcCmMeNCWuN8BNR8RJr
ChrisRackauckas
marked this pull request as ready for review
July 29, 2026 19:46
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.
Please ignore until reviewed by @ChrisRackauckas.
Seven subpackages carry a version on
masterthat jumps over one or more unregistered versions. AutoMerge rejects these under the sequential version number guideline, so none of them can currently register. This lowers each to the patch successor of its latest registered version.Only the
version =line of eachProject.tomlchanges — 7 files, 7 lines.Why these numbers
"Registered (live)" is the highest non-yanked version in
Versions.toml. Worth noting for DiffEqDevTools:4.0.0is registered but yanked, so the highest live release is3.1.3, not4.0.0. (OrdinaryDiffEqCore 5.0.0is likewise yanked, which is why master continues the 4.x line.)The intervening versions were never released, so collapsing them loses no published history.
No compat bound is invalidated
Lowering a version can make a sibling
[compat]bound unsatisfiable. I checked every in-repo bound on all seven: all are major-level ("2","3","2, 3") exceptOrdinaryDiffEqBDF'sOrdinaryDiffEqSDIRK = "2.5", which2.8.2still satisfies. No bound needs to move in this PR.Not included
OrdinaryDiffEqCore(master 4.12.0, live 4.8.0) andDiffEqBase(master 7.10.0, live 7.7.0) are also skips, but are deliberately excluded. Nine libs pinOrdinaryDiffEqCore = "4.10", so renumbering Core down to 4.9.0 would make them uninstallable. Those two are instead being filled in sequentially — 4.8.1 / 4.9.0 / 4.10.0 and DiffEqBase 7.8.0 are open in General now.