@@ -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
5557Stabilized 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
7781Cargo
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
120125Internal 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[ feature-resolver@2.0 ] : 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
172181Version 1.50.0 (2021-02-11)
173182============================
0 commit comments