|
1 | 1 | ## 0.2.11.0 |
2 | 2 |
|
3 | 3 | * Add `HashMap.findWithDefault` (soft-deprecates `HashMap.lookupDefault`). |
| 4 | + Thanks, Matt Renaud. |
4 | 5 |
|
5 | | - * Add `HashMap.fromListWithKey` |
| 6 | + * Add `HashMap.fromListWithKey`. Thanks, Josef Svenningsson. |
6 | 7 |
|
7 | | - * Add more folding functions and use them in `Foldable` instances. |
| 8 | + * Add more folding functions and use them in `Foldable` instances. Thanks, |
| 9 | + David Feuer. |
8 | 10 |
|
9 | | - * Add `HashMap.!?`, a flipped version of `lookup`. |
| 11 | + * Add `HashMap.!?`, a flipped version of `lookup`. Thanks, Matt Renaud. |
10 | 12 |
|
11 | | - * Add `fromListWithKey` for `HashMap`. Thanks, Josef Svenningsson. |
12 | | - |
13 | | -### Bug fixes |
14 | | - |
15 | | - * Fix a space leak affecting updates on keys with hash collisions. Thanks, Neil Mitchell. (#254) |
| 13 | + * Add a `Bifoldable` instance for `HashMap`. Thanks, Joseph Sible. |
16 | 14 |
|
17 | 15 | * Add a `HasCallStack` constraint to `(!)`. Thanks, Roman Cheplyaka. |
18 | 16 |
|
19 | | - * Add a `Bifoldable` instance for `HashMap`. Thanks, Joseph Sible. |
| 17 | +### Bug fixes |
20 | 18 |
|
21 | | - * Get rid of some silly thunks that could be left lying around. (#232) |
| 19 | + * Fix a space leak affecting updates on keys with hash collisions. Thanks, |
| 20 | + Neil Mitchell. ([#254]) |
| 21 | + |
| 22 | + * Get rid of some silly thunks that could be left lying around. ([#232]). |
| 23 | + Thanks, David Feuer. |
22 | 24 |
|
23 | 25 | ### Other changes |
24 | 26 |
|
| 27 | + * Speed up the `Hashable` instances for `HashMap` and `HashSet`. Thanks, |
| 28 | + Edward Amsden. |
| 29 | + |
25 | 30 | * Remove a dependency cycle hack from the benchmark suite. Thanks, |
26 | 31 | Andrew Martin. |
27 | 32 |
|
28 | 33 | * Improve documentation. Thanks, Tristan McLeay, Li-yao Xia, Gareth Smith, |
29 | 34 | Simon Jakobi, Sergey Vinokurov, and likely others. |
30 | 35 |
|
31 | | - * Speed up the `Hashable` instances for `HashMap` and `HashSet`. |
| 36 | +[#232]: https://github.com/haskell-unordered-containers/unordered-containers/issues/232 |
| 37 | +[#254]: https://github.com/haskell-unordered-containers/unordered-containers/issues/254 |
32 | 38 |
|
33 | 39 | ## 0.2.10.0 |
34 | 40 |
|
|
0 commit comments