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