Skip to content

Commit

Permalink
Merge pull request #320 from sathvikbhagavan/sb/news
Browse files Browse the repository at this point in the history
docs: add breaking changes for v6 in NEWS.md
  • Loading branch information
ChrisRackauckas authored Jul 30, 2024
2 parents efaf629 + 124a4d0 commit 74ccbab
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@
+ 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`.

# DataInterpolations v6 Release Notes

## Breaking changes

- https://github.com/SciML/DataInterpolations.jl/pull/274 introduced caching of parameters for interpolations (released in v5.3) and also introduced a field `safetycopy` which was a boolean flag to create a copy of the data as the parameters would be invalid if data is mutated. This was removed in https://github.com/SciML/DataInterpolations.jl/pull/315 to introduce `cache_parameters` which made it explicit if a user wants to opt in for parameter caching or not.

0 comments on commit 74ccbab

Please sign in to comment.