Release prep: bump version to 0.3.6#67
Merged
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
Bumps the
versionfield in Project.toml from0.3.5to0.3.6. There are no unreleased-commit version bumps pending prior to this — the last registered version (0.3.5, tree-shaf0bb6e1324dd44040b601828d00b5e905ef91b27) matches commit 5040f82 ("Bump version to 0.3.5 (#65)"). Since then, one PR has landed onmain:pmap_to_pinsrc/fspsystem.jl: parameter-map handling was rewritten to correctly resolve parameter values (previously relied onModelingToolkit.varmap_to_vars, now does an explicit symbol-keyed lookup), and addsSciMLBase.NullParametersshort-circuiting. Commit message: "Fix FiniteStateProjection ModelingToolkit integration".ODEFunction{true}→ODEFunction{true, SciMLBase.FullSpecialize}inbuild_rhs.jl/build_rhs_ss.jl(specialization hint, non-breaking).ModelingToolkitas a direct dependency ([deps]+compat = "9, 10, 11") — it was already being used unqualified via the@reexport using Catalystchain; this just makes the existing usage explicit and adds a matching compat bound consistent with whatCatalyst = "15, 16.2"already resolves.Randomas a test dependency, bumps the QA-onlySciMLTestingcompat floor to2.1and updatestest/qa/qa.jlfor the newapi_docs_kwargscheck.Bump-type rationale
PATCH (0.3.5 → 0.3.6). The only runtime-source change is a bug fix (correct parameter-map resolution) plus an internal specialization hint; no new exported API or backward-compatible feature was added. Per SemVer/pre-1.0 convention, breaking changes would warrant a MINOR bump, but nothing here appears breaking —
pmap_to_pcontinues to accept the same call patterns, it just resolves them correctly. Everything else (QA/test infra, compat-floor bookkeeping) is non-functional for downstream users.Compat bounds
Left as-is. The diff's own
ModelingToolkit = "9, 10, 11"addition andSciMLTesting = "2.1"floor bump already match the new usage (ModelingToolkit.value,api_docs_kwargs), so no further compat changes were needed.