Skip to content

Commit 2f731f1

Browse files
committed
Sync release log from 1.9.0
1 parent ccffb84 commit 2f731f1

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

RELEASES.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
- 2.0.0 (pending)
22

3-
- **MSRV**: Rust 1.56.1 or later is now required.
4-
5-
- The `hashbrown` dependency has been updated to version 0.12.
6-
73
- The `"std"` feature is no longer auto-detected. It is included in the
84
default feature set, or else can be enabled like any other Cargo feature.
95

@@ -14,6 +10,17 @@
1410
the key part from `&mut K` to `&K`. There is also a new alternative
1511
`MutableKeys::get_index_mut2` to access the former behavior.
1612

13+
- The new `map::Slice<K, V>` and `set::Slice<T>` offer a linear view of maps
14+
and sets, behaving a lot like normal `[(K, V)]` and `[T]` slices. Notably,
15+
comparison traits like `Eq` only consider items in order, rather than hash
16+
lookups, and slices even implement `Hash`.
17+
18+
- 1.9.0
19+
20+
- **MSRV**: Rust 1.56.1 or later is now required.
21+
22+
- The `hashbrown` dependency has been updated to version 0.12.
23+
1724
- `IterMut` and `ValuesMut` now implement `Debug`.
1825

1926
- The new `IndexMap::shrink_to` and `IndexSet::shrink_to` methods shrink
@@ -23,10 +30,9 @@
2330
the position of an item from one index to another, shifting the items
2431
between to accommodate the move.
2532

26-
- The new `map::Slice<K, V>` and `set::Slice<T>` offer a linear view of maps
27-
and sets, behaving a lot like normal `[(K, V)]` and `[T]` slices. Notably,
28-
comparison traits like `Eq` only consider items in order, rather than hash
29-
lookups, and slices even implement `Hash`.
33+
- 1.8.2
34+
35+
- Bump the `rustc-rayon` dependency, for compiler use only.
3036

3137
- 1.8.1
3238

0 commit comments

Comments
 (0)