Skip to content

Commit

Permalink
chore: format NEWS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
sathvikbhagavan committed May 7, 2024
1 parent bafabdb commit c4eb62a
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.

0 comments on commit c4eb62a

Please sign in to comment.