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