Skip to content

Releases: JuliaArrays/StaticArrays.jl

Rework several types

19 Nov 15:13
d14604c

Choose a tag to compare

Breaking changes

  • axes returns tuples of statically-sized ranges SOneTo{n}
  • replace SDiagonal with Diagonal{T,SVector{n,T}}
  • preserve mutability for MArray with similar_type
  • use DimensionMismatch instead of ErrorException when constructing/converting with wrong number of elements

Bug fixes

  • fixes to broadcasting on latest julia master

StaticArrays 0.9.2

25 Oct 10:08
1683f79

Choose a tag to compare

Bug fixes

  • GC fix for getindex/setindex! on MArrays (#529, #530).

StaticArrays 0.9.1

23 Oct 23:02

Choose a tag to compare

Bug fixes

  • Corrected deprecation of old StaticArrays.ImmutableArrays and StaticArrays.FixedSizeArrays interfaces (#521, #527)
  • Fixed ordering of eigenvectors for diagonal 2x2 matrices (#523, #524)

StaticArrays 0.9.0

23 Oct 11:06
448f9c9

Choose a tag to compare

Breaking changes

  • Fix various inference issues; avoid calling Core.Compiler.return_type() (#503)
  • Deprecate old StaticArrays.ImmutableArrays and StaticArrays.FixedSizeArrays interfaces (#521)

Bug fixes and performance improvements

  • Fixed MMatrix boundshecks, faster getindex (#484)
  • add propagate_inbounds for SArray getindex (#491)
  • Reinstate read(::IO, Type{<:StaticArray}) (#515)
  • Optimized methods for Triangular * Triangular (#511)
  • Improve performance of Iteators.flatten with arrays of static arrays. (#507)
  • Fix missing size error for constructors (#519)

StaticArrays 0.8.3

08 Aug 13:59
1bc691d

Choose a tag to compare

Julia v1.0 compatibility

StaticArrays 0.8.2

08 Jul 10:39
5087eca

Choose a tag to compare

Fix #388: tweak hcat and vcat to increase the number of arguments that may be passed in before running into compiler limits.

StaticArrays 0.8.1

04 Jul 01:14
e5bd424

Choose a tag to compare

Addresses some more v0.7 deprecations.

StaticArrays 0.8.0

30 Jun 21:40
b97d834

Choose a tag to compare

Drops Julia v0.6 support. Works on Julia v0.7.

Generate helpful error message for unknown Size

24 Jun 13:38
4b1afb6

Choose a tag to compare

Merge pull request #448 from JuliaArrays/teh/errmsg

Activate helpful error message for undefined-Size conversions

v0.7.1

12 Jun 21:33
5a9c7f7

Choose a tag to compare

  • More Kronecker product specializations
  • Better (not perfect) Julia v0.7 support
  • Bugfixes