@@ -51,6 +51,8 @@ Libraries
51
51
- [ ` io::Empty ` now implements ` io::Seek ` .] [ 78044 ]
52
52
- [ ` rc::Weak<T> ` and ` sync::Weak<T> ` 's methods such as ` as_ptr ` are now implemented for
53
53
` T: ?Sized ` types.] [ 80764 ]
54
+ - [ ` Div ` and ` Rem ` by their ` NonZero ` variant is now implemented for all unsigned integers.] [ 79134 ]
55
+
54
56
55
57
Stabilized APIs
56
58
---------------
@@ -73,6 +75,8 @@ Stabilized APIs
73
75
- [ ` str::split_inclusive ` ]
74
76
- [ ` sync::OnceState ` ]
75
77
- [ ` task::Wake ` ]
78
+ - [ ` VecDeque::range ` ]
79
+ - [ ` VecDeque::range_mut ` ]
76
80
77
81
Cargo
78
82
-----
@@ -116,6 +120,7 @@ Compatibility Notes
116
120
- ` thumbv7neon-unknown-linux-gnueabihf `
117
121
- ` armv7-unknown-linux-gnueabi `
118
122
- ` x86_64-unknown-linux-gnux32 `
123
+ - [ ` atomic::spin_loop_hint ` has been deprecated.] [ 80966 ] It's recommended to use ` hint::spin_loop ` instead.
119
124
120
125
Internal Only
121
126
-------------
@@ -147,6 +152,8 @@ Internal Only
147
152
[ 80749 ] : https://github.com/rust-lang/rust/pull/80749
148
153
[ 80662 ] : https://github.com/rust-lang/rust/pull/80662
149
154
[ 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
150
157
[ cargo/8997 ] : https://github.com/rust-lang/cargo/pull/8997
151
158
[ cargo/9112 ] : https://github.com/rust-lang/cargo/pull/9112
152
159
[ [email protected] ] :
https://doc.rust-lang.org/nightly/cargo/reference/features.html#feature-resolver-version-2
@@ -168,6 +175,8 @@ Internal Only
168
175
[ `Seek::stream_position` ] : https://doc.rust-lang.org/nightly/std/io/trait.Seek.html#method.stream_position
169
176
[ `Peekable::next_if` ] : https://doc.rust-lang.org/nightly/std/iter/struct.Peekable.html#method.next_if
170
177
[ `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
171
180
172
181
Version 1.50.0 (2021-02-11)
173
182
============================
0 commit comments