Skip to content

Commit 26004b3

Browse files
authored
Rollup merge of rust-lang#83438 - CDirkx:releases, r=Mark-Simulacrum
Update RELEASES.md A couple of things that were missing in the release notes: - `Div` and `Rem` by their `NonZero` variant is now implemented for all unsigned integers (rust-lang#79134) - Stabilization of `VecDeque::range` and `VecDeque::range_mut` (rust-lang#79022, stabilization version corrected to 1.51.0 rust-lang#80448) - Deprecation of `spin_loop_hint` (rust-lang#80966)
2 parents 0f8dfe6 + b388d15 commit 26004b3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

RELEASES.md

+9
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ Libraries
5151
- [`io::Empty` now implements `io::Seek`.][78044]
5252
- [`rc::Weak<T>` and `sync::Weak<T>`'s methods such as `as_ptr` are now implemented for
5353
`T: ?Sized` types.][80764]
54+
- [`Div` and `Rem` by their `NonZero` variant is now implemented for all unsigned integers.][79134]
55+
5456

5557
Stabilized APIs
5658
---------------
@@ -73,6 +75,8 @@ Stabilized APIs
7375
- [`str::split_inclusive`]
7476
- [`sync::OnceState`]
7577
- [`task::Wake`]
78+
- [`VecDeque::range`]
79+
- [`VecDeque::range_mut`]
7680

7781
Cargo
7882
-----
@@ -116,6 +120,7 @@ Compatibility Notes
116120
- `thumbv7neon-unknown-linux-gnueabihf`
117121
- `armv7-unknown-linux-gnueabi`
118122
- `x86_64-unknown-linux-gnux32`
123+
- [`atomic::spin_loop_hint` has been deprecated.][80966] It's recommended to use `hint::spin_loop` instead.
119124

120125
Internal Only
121126
-------------
@@ -147,6 +152,8 @@ Internal Only
147152
[80749]: https://github.com/rust-lang/rust/pull/80749
148153
[80662]: https://github.com/rust-lang/rust/pull/80662
149154
[77885]: https://github.com/rust-lang/rust/pull/77885
155+
[79134]: https://github.com/rust-lang/rust/pull/79134
156+
[80966]: https://github.com/rust-lang/rust/pull/80966
150157
[cargo/8997]: https://github.com/rust-lang/cargo/pull/8997
151158
[cargo/9112]: https://github.com/rust-lang/cargo/pull/9112
152159
[[email protected]]: https://doc.rust-lang.org/nightly/cargo/reference/features.html#feature-resolver-version-2
@@ -168,6 +175,8 @@ Internal Only
168175
[`Seek::stream_position`]: https://doc.rust-lang.org/nightly/std/io/trait.Seek.html#method.stream_position
169176
[`Peekable::next_if`]: https://doc.rust-lang.org/nightly/std/iter/struct.Peekable.html#method.next_if
170177
[`Peekable::next_if_eq`]: https://doc.rust-lang.org/nightly/std/iter/struct.Peekable.html#method.next_if_eq
178+
[`VecDeque::range`]: https://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.range
179+
[`VecDeque::range_mut`]: https://doc.rust-lang.org/nightly/std/collections/struct.VecDeque.html#method.range_mut
171180

172181
Version 1.50.0 (2021-02-11)
173182
============================

0 commit comments

Comments
 (0)