v0.3.1: Auto merge of #40 - mbrubeck:docs, r=Ms2ger
- New:
SmallVec
implements theDefault
trait (#30).
- Deprecated:
push_all_move
(useextend
instead)- type aliases (e.g.
SmallVec2
). UseSmallVec<A>' instead (e.g.
SmallVec<[T; 2]>`)
- Removed:
VecLike::len
(use the inherentlen
slice method instead) [breaking change] (#38).
- Bug fixes:
- Fixed a memory safety hazard in
grow
(#40).
- Fixed a memory safety hazard in
- Performance improvements:
shrink_to_fit
will move data to the stack when possible (#40).
- Improved:
- More documentation, more tests, more benchmarks, and misc. code cleanup.
There is no version 0.3.0. This version was published as 0.3.1 instead of 0.3.0 by accident.