forked from SciML/DataInterpolations.jl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request SciML#249 from sathvikbhagavan/sb/major
docs: add NEWS.md to document breaking changes
- Loading branch information
Showing
2 changed files
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# DataInterpolations v5 Release Notes | ||
|
||
## Breaking changes | ||
|
||
- `AbstractInterpolation` is not a subtype of `AbstractVector` anymore. This was needed for previous versions of ModelingToolkit.jl to represent splines as vectors. | ||
- Indexing overloads for `AbstractInterpolation` and the type parameter associated with it are removed. For example - `A` is an interpolation object: | ||
- Doing `A[i]` will error. Use `A.u[i]`. | ||
- `size(A)` will error. Use `size(A.u)` or `size(A.t)`. | ||
- Removed deprecated bindings for `ZeroSpline` which is the same as `ConstantInterpolation`. |
This file contains 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