You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename referrenced -> referenced, deprecate old spellings (#257)
Finishes #236 by following the maintainer's review:
- Mass-replace the misspelled `referrenced` with `referenced` across src,
tests, docs and CHANGELOG, including comments and error messages.
- Export `referenced_sciml_prob` (previously unexported despite being part
of the public extension API) and add a docstring.
- Keep `referrenced_sciml_prob`, `referrenced_sciml_model` and the internal
`has_referrenced_model` as deprecated aliases in `src/deprecations.jl`,
so downstream code keeps working with a deprecation warning.
- Bump version to 3.18.0 and add a changelog entry.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
# v3.18
2
+
3
+
- The public API functions `referrenced_sciml_prob`, `referrenced_sciml_model`, and the internal `has_referrenced_model` have been renamed to fix the misspelling: `referenced_sciml_prob`, `referenced_sciml_model`, `has_referenced_model`. The misspelled names are kept as deprecated aliases that forward to the new ones, so existing code keeps working but emits a deprecation warning. `referenced_sciml_prob` is now also exported and documented.
4
+
1
5
# v3.17
2
6
3
7
-`CoupledSDEs` (along with `diffusion_matrix` and related utilities) is now part of the core package instead of living behind the `StochasticSystemsBase` package extension. Users no longer need to load `StochasticDiffEq` to construct or use `CoupledSDEs`, and `Base.get_extension` is no longer required to access `diffusion_matrix`.
@@ -86,7 +90,7 @@ model and all symbolic variables. Accessing a `DynamicalSystem` using symbolic v
86
90
is possible via the functions [`observe_state`](@ref), [`set_state!`](@ref),
87
91
[`current_parameter`](@ref) and [`set_parameter!`](@ref).
88
92
The referenced MTK model corresponding to the dynamical system can be obtained with
0 commit comments