@@ -20,6 +20,12 @@ Breaking Changes
20
20
* [ The ` str::lines ` and ` BufRead::lines ` iterators treat ` \r\n ` as
21
21
line breaks in addition to ` \n ` ] [ crlf ] .
22
22
* [ Loans of ` 'static ` lifetime extend to the end of a function] [ stat ] .
23
+ * [ ` str::parse ` no longer introduces avoidable rounding error when
24
+ parsing floating point numbers. Together with earlier changes to
25
+ float formatting/output, "round trips" like f.to_string().parse()
26
+ now preserve the value of f exactly. Additionally, leading plus
27
+ signs are now accepted] [ fp3 ] .
28
+
23
29
24
30
Language
25
31
--------
@@ -68,19 +74,22 @@ Libraries
68
74
prelude] [ pr ] .
69
75
* [ ` Extend<String> ` and ` FromIterator<String ` are both implemented for
70
76
` String ` ] [ es ] .
71
- * [ ` IntoIterator ` is implemented for ` Option<&T> ` and
72
- ` Result<&T> ` ] [ into ] .
77
+ * [ ` IntoIterator ` is implemented for references into ` Option ` and
78
+ ` Result ` ] [ into2 ] .
73
79
* [ ` HashMap ` and ` HashSet ` implement ` Extend<&T> ` where `T:
74
- Copy`] [ ext ] as part of [ RFC 839] .
80
+ Copy`] [ ext ] as part of [ RFC 839] . This will cause type inferance
81
+ breakage in rare situations.
75
82
* [ ` BinaryHeap ` implements ` Debug ` ] [ bh2 ] .
76
83
* [ ` Borrow ` and ` BorrowMut ` are implemented for fixed-size
77
84
arrays] [ bm ] .
78
- * [ ` extern fn ` s of with the "Rust" and "C" ABIs implement common
85
+ * [ ` extern fn ` s with the "Rust" and "C" ABIs implement common
79
86
traits including ` Eq ` , ` Ord ` , ` Debug ` , ` Hash ` ] [ fp ] .
80
87
* [ String comparison is faster] [ faststr ] .
81
- * ` &mut T ` where ` T: Write ` [ also implements ` Write ` ] [ mutw ] .
82
- * [ A stable regression in ` VecDec::push_back ` that caused panics for
83
- zero-sized types was fixed] [ vd ] .
88
+ * ` &mut T ` where ` T: std::fmt::Write ` [ also implements
89
+ ` std::fmt::Write ` ] [ mutw ] .
90
+ * [ A stable regression in ` VecDeque::push_back ` and other
91
+ capicity-altering methods that caused panics for zero-sized types
92
+ was fixed] [ vd ] .
84
93
* [ Function pointers implement traits for up to 12 parameters] [ fp2 ] .
85
94
86
95
Miscellaneous
@@ -151,8 +160,9 @@ Miscellaneous
151
160
[ ffi ] : https://github.com/rust-lang/rust/pull/28779
152
161
[ fp ] : https://github.com/rust-lang/rust/pull/28268
153
162
[ fp2 ] : https://github.com/rust-lang/rust/pull/28560
163
+ [ fp3 ] : https://github.com/rust-lang/rust/pull/27307
154
164
[ i ] : https://github.com/rust-lang/rust/pull/27451
155
- [ into ] : https://github.com/rust-lang/rust/pull/28039
165
+ [ into2 ] : https://github.com/rust-lang/rust/pull/28039
156
166
[ it ] : https://github.com/rust-lang/rust/pull/27652
157
167
[ mm ] : https://github.com/rust-lang/rust/pull/27338
158
168
[ mutw ] : https://github.com/rust-lang/rust/pull/28368
0 commit comments