1- Version v1 .34.0 (2019-04-11)
1+ Version 1 .34.0 (2019-04-11)
22==========================
33
44Language
55--------
6- - [ You can now use ` #[deprecation = "reason"] ` ] [ 58166 ] as a shorthand for
7- ` #[deprecation (note = "reason")] ` . This was previously allowed as a syntax bug
6+ - [ You can now use ` #[deprecated = "reason"] ` ] [ 58166 ] as a shorthand for
7+ ` #[deprecated (note = "reason")] ` . This was previously allowed by mistake
88 but had no effect.
99- [ You can now accept token streams in ` #[attr()] ` ,` #[attr[]] ` , and
1010 ` #[attr{}] ` procedural macros.] [ 57367 ]
11- - [ You can now write ` extern crate self as foo; ` ] [ 57407 ] to import the your
11+ - [ You can now write ` extern crate self as foo; ` ] [ 57407 ] to import your
1212 crate's root into the extern prelude.
1313
1414
@@ -28,7 +28,7 @@ Libraries
2828- [ The trait bounds have been removed on some of ` HashMap<K, V, S> ` 's and
2929 ` HashSet<T, S> ` 's basic methods.] [ 58370 ] Most notably you no longer require
3030 the ` Hash ` trait to create an iterator.
31- - [ Relax Ord trait bounds have been removed on some of ` BinaryHeap<T> ` 's basic
31+ - [ The ` Ord ` trait bounds have been removed on some of ` BinaryHeap<T> ` 's basic
3232 methods.] [ 58421 ] Most notably you no longer require the ` Ord ` trait to create
3333 an iterator.
3434- [ The methods ` overflowing_neg ` and ` wrapping_neg ` are now ` const ` functions
@@ -60,8 +60,6 @@ Stabilized APIs
6060* [ ` convert::Infallible ` ]
6161* [ ` convert::TryFrom ` ]
6262* [ ` convert::TryInto ` ]
63- * [ ` iter::FromFn ` ]
64- * [ ` iter::Successors ` ]
6563* [ ` iter::from_fn ` ]
6664* [ ` iter::successors ` ]
6765* [ ` num::NonZeroI128 ` ]
@@ -84,7 +82,7 @@ Stabilized APIs
8482
8583Cargo
8684-----
87- - [ You can now use alternatives registries to crates.io.] [ cargo/6654 ]
85+ - [ You can now use alternative registries to crates.io.] [ cargo/6654 ]
8886
8987Misc
9088----
@@ -127,8 +125,6 @@ Compatibility Notes
127125[ `convert::Infallible` ] : https://doc.rust-lang.org/std/convert/enum.Infallible.html
128126[ `convert::TryFrom` ] : https://doc.rust-lang.org/std/convert/trait.TryFrom.html
129127[ `convert::TryInto` ] : https://doc.rust-lang.org/std/convert/trait.TryInto.html
130- [ `iter::FromFn` ] : https://doc.rust-lang.org/std/iter/struct.FromFn.html
131- [ `iter::Successors` ] : https://doc.rust-lang.org/std/iter/struct.Successors.html
132128[ `iter::from_fn` ] : https://doc.rust-lang.org/std/iter/fn.from_fn.html
133129[ `iter::successors` ] : https://doc.rust-lang.org/std/iter/fn.successors.html
134130[ `num::NonZeroI128` ] : https://doc.rust-lang.org/std/num/struct.NonZeroI128.html
0 commit comments