From f5656dd4adc815a77e42956e7e688cb305507e6f Mon Sep 17 00:00:00 2001 From: Sathvik Bhagavan Date: Tue, 7 May 2024 09:29:16 +0000 Subject: [PATCH] chore: format NEWS.md --- NEWS.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/NEWS.md b/NEWS.md index 24afb09d..f4b0c8a7 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,8 +2,9 @@ ## 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`.