We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc32398 commit cc5e581Copy full SHA for cc5e581
HISTORY.md
@@ -4,6 +4,10 @@
4
5
**Breaking changes**
6
7
+### VarInfo constructor
8
+
9
+`VarInfo(vi::VarInfo, values)` has been removed. You can replace this directly with `unflatten(vi, values)` instead.
10
11
### VarName prefixing behaviour
12
13
The way in which VarNames in submodels are prefixed has been changed.
src/varinfo.jl
@@ -100,8 +100,6 @@ const TypedVarInfo = VarInfo{<:NamedTuple}
100
const VarInfoOrThreadSafeVarInfo{Tmeta} = Union{
101
VarInfo{Tmeta},ThreadSafeVarInfo{<:VarInfo{Tmeta}}
102
}
103
-# TODO: Remove this
104
-@deprecate VarInfo(vi::VarInfo, x::AbstractVector) unflatten(vi, x)
105
106
# NOTE: This is kind of weird, but it effectively preserves the "old"
107
# behavior where we're allowed to call `link!` on the same `VarInfo`
0 commit comments