no bug - Correct some typos in the comments. a=typo-fix
[gecko.git] / third_party / rust / slab / CHANGELOG.md
blobdb545827ad30850a64a91651e118a22adf2e7b65
1 # 0.4.8 (January 20, 2022)
3 * Fixed documentation about overflow (#124)
4 * Document panic in `get2_mut` (#131)
5 * Refactoring (#129, #132)
7 # 0.4.7 (July 19, 2022)
9 * Use `#[track_caller]` on Rust 1.46+ (#119)
10 * Make `Slab::new` const on Rust 1.39+ (#119)
12 # 0.4.6 (April 2, 2022)
14 * Add `Slab::vacant_key` (#114)
15 * Fix stacked borrows violation in `Slab::get2_unchecked_mut` (#115)
17 # 0.4.5 (October 13, 2021)
19 * Add alternate debug output for listing items in the slab (#108)
20 * Fix typo in debug output of IntoIter (#109)
21 * Impl 'Clone' for 'Iter' (#110)
23 # 0.4.4 (August 06, 2021)
25 * Fix panic in `FromIterator` impl (#102)
26 * Fix compatibility with older clippy versions (#104)
27 * Add `try_remove` method (#89)
28 * Implement `ExactSizeIterator` and `FusedIterator` for iterators (#92)
30 # 0.4.3 (April 20, 2021)
32 * Add no_std support for Rust 1.36 and above (#71).
33 * Add `get2_mut` and `get2_unchecked_mut` methods (#65).
34 * Make `shrink_to_fit()` remove trailing vacant entries (#62).
35 * Implement `FromIterator<(usize, T)>` (#62).
36 * Implement `IntoIterator<Item = (usize, T)>` (#62).
37 * Provide `size_hint()` of the iterators (#62).
38 * Make all iterators reversible (#62).
39 * Add `key_of()` method (#61)
40 * Add `compact()` method (#60)
41 * Add support for serde (#85)
43 # 0.4.2 (January 11, 2019)
45 * Add `Slab::drain` (#56).
47 # 0.4.1 (July 15, 2018)
49 * Improve `reserve` and `reserve_exact` (#37).
50 * Implement `Default` for `Slab` (#43).