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
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,18 @@
1
1
# ComponentArrays.jl NEWS
2
2
Notes on new features (minor releases). For more details on bugfixes and non-feature-adding changes (patch releases), check out the [releases page](https://github.com/jonniedie/ComponentArrays.jl/releases).
3
3
4
+
### v0.9.0
5
+
- Construct `ComponentArray`s from `Dict`s!
6
+
```julia
7
+
julia> d =Dict(:a=>rand(3), :b=>rand(2,2))
8
+
Dict{Symbol, Array{Float64, N} where N} with 2 entries:
9
+
:a=> [0.996693, 0.148683, 0.203083]
10
+
:b=> [0.687590.41585; 0.9005910.377475]
11
+
12
+
julia>ComponentArray(d)
13
+
ComponentVector{Float64}(a = [0.9966932920820444, 0.14868304847436709, 0.20308284992079573], b = [0.68759020957315830.415850281435181; 0.90059096433642290.3774747843717925])
14
+
```
15
+
4
16
### v0.8.0
5
17
- Generated `valkeys` function for fast iteration over `ComponentVector` subcomponents!
0 commit comments