Releases: JuliaArrays/StaticArrays.jl
Releases · JuliaArrays/StaticArrays.jl
Fix #103
StaticArrays v0.2.0
Removes a long-time bad behaviour (type piracy) from the indexing code, whereby any array could be indexed with a tuple (to return an SVector
).
This is a breaking change for anyone who is doing anything like [11,12,13][(2,3)]
to create SVector(12,13)
. Use [11,12,13][SVector(2,3)]
instead.
StaticArrays v0.1.5
- Fixes for julia-0.6-dev to deal with fallout from JuliaLang/julia#265
- Indexing StaticArrays with StaticVector is now type stable
- Various additions to StaticArrays.FixedSizeArrays for compatibility
- Support for 2D cross product
StaticArrays v0.1.4
Bugfix:
- Avoid emitting Expr(:meta, :inline) in constructor macros, which caused user functions to become inline
StaticArrays v0.1.3
Minor patches:
- Remove depwarns for julia-0.6 fusing dot operators
- Fix incorrect .>> definitions for julia-0.5