diff --git a/NEWS.md b/NEWS.md index 24afb09d..1304715e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,8 +2,10 @@ ## 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`. + - `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`. diff --git a/docs/Project.toml b/docs/Project.toml index e5abf6f8..30a52bff 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -7,7 +7,7 @@ RegularizationTools = "29dad682-9a27-4bc3-9c72-016788665182" StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3" [compat] -DataInterpolations = "4" +DataInterpolations = "5" Documenter = "1" Optim = "1" Plots = "1"