Skip to content

Releases: servo/rust-smallvec

v0.6.9

19 Feb 18:03
dfd78d1
Compare
Choose a tag to compare
  • Remove dependency on unreachable crate (#140)

v0.6.8

19 Jan 20:06
a775b5f
Compare
Choose a tag to compare
  • Don't leak memory if an iterator panics during extend (#137)
  • Update the unstable union feature for better forward compatibility (#135)

v0.6.7

29 Nov 21:53
e244d0a
Compare
Choose a tag to compare
  • Add an optional feature to use the unstable may_dangle attribute (#133).

v0.6.6

16 Nov 18:08
c1921f4
Compare
Choose a tag to compare
  • Fix possible over-allocation in from_slice (#122)
  • Optional nightly-only specialization feature for from_slice optimization (#123)
  • New from_raw_parts constructor (#130)
  • Documentation and testing improvements (#125, #129)

v0.6.5

22 Aug 23:04
04e3c4e
Compare
Choose a tag to compare
  • #115 - add into_inner method
  • #117 - add from_buf_and_len and from_buf_and_len_unchecked
  • #118 - optimize from_slice
  • Some code cleanup and testing improvements (#112, #113, #114, #120)

v0.6.4

06 Aug 20:40
62c525a
Compare
Choose a tag to compare
  • Extend the smallvec! macro to work with non-Copy items (#107)
  • Improve the Debug formatting implementation (#109)

v0.5.1

20 Jul 17:33
Compare
Choose a tag to compare
  • Fix possible double-free on panic in insert_many (#96).

v0.4.5

20 Jul 17:32
Compare
Choose a tag to compare
  • Fix possible double-free on panic in insert_many (#96).

v0.3.4

20 Jul 17:32
Compare
Choose a tag to compare
  • Fix possible double-free on panic in insert_many (#96).

v0.6.3

19 Jul 21:38
fcb1b7e
Compare
Choose a tag to compare
  • Fix possible double-free in insert_many when passed an iterator that panics in next (#103)
  • Add a new union feature (disabled by default) that reduces the size of the SmallVec struct (#94)
  • Improve performance of extend and from_elem (#93)
  • Improve performance of drop (#100)
  • Update to build without std feature on current Rust nightly (#104)
  • Additional benchmarks (#95, #97)
  • Update dev-dependency on bincode (#102)