You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,10 @@
2
2
3
3
## Breaking changes
4
4
5
-
-`AbstractInterpolation` is not a subtype of `AbstractVector` anymore. This was needed for previous versions of ModelingToolkit.jl to represent splines as vectors.
6
-
- Indexing overloads for `AbstractInterpolation` and the type parameter associated with it are removed. For example - `A` is an interpolation object:
7
-
- Doing `A[i]` will error. Use `A.u[i]`.
8
-
-`size(A)` will error. Use `size(A.u)` or `size(A.t)`.
9
-
- Removed deprecated bindings for `ZeroSpline` which is the same as `ConstantInterpolation`.
5
+
-`AbstractInterpolation` is not a subtype of `AbstractVector` anymore. This was needed for previous versions of ModelingToolkit.jl to represent splines as vectors.
6
+
7
+
- Indexing overloads for `AbstractInterpolation` and the type parameter associated with it are removed. For example - `A` is an interpolation object:
8
+
9
+
+ Doing `A[i]` will error. Use `A.u[i]`.
10
+
+`size(A)` will error. Use `size(A.u)` or `size(A.t)`.
11
+
- Removed deprecated bindings for `ZeroSpline` which is the same as `ConstantInterpolation`.
0 commit comments