@@ -31,6 +31,7 @@ Version 0.8 (October 2013)
31
31
* `ref` bindings in irrefutable patterns work correctly now.
32
32
* `char` is now prevented from containing invalid code points.
33
33
* Casting to `bool` is no longer allowed.
34
+ * `\0` is now accepted as an escape in chars and strings.
34
35
* `yield` is a reserved keyword.
35
36
* `typeof` is a reserved keyword.
36
37
* Crates may be imported by URL with `extern mod foo = "url";`.
@@ -111,6 +112,9 @@ Version 0.8 (October 2013)
111
112
the `MutableSet` and `MutableMap` traits. `Container::is_empty`,
112
113
`Map::contains_key`, `MutableMap::insert`, and `MutableMap::remove` have
113
114
default implementations.
115
+ * std: Various `from_str` functions were removed in favor of a generic
116
+ `from_str` which is available in the prelude.
117
+ * std: `util::unreachable` removed in favor of the `unreachable!` macro.
114
118
* extra: `dlist`, the doubly-linked list was modernized.
115
119
* extra: Added a `hex` module with `ToHex` and `FromHex` traits.
116
120
* extra: Added `glob` module, replacing `std::os::glob`.
@@ -125,6 +129,9 @@ Version 0.8 (October 2013)
125
129
* extra: `semver` updated to SemVer 2.0.0.
126
130
* extra: `term` handles more terminals correctly.
127
131
* extra: `dbg` module removed.
132
+ * extra: `par` module removed.
133
+ * extra: `future` was cleaned up, with some method renames.
134
+ * extra: Most free functions in `getopts` were converted to methods.
128
135
129
136
* Other
130
137
* rustc's debug info generation (`-Z debug-info`) is greatly improved.
@@ -205,6 +212,7 @@ Version 0.7 (July 2013)
205
212
* std: Many old internal vector and string iterators,
206
213
incl. `any`, `all`. removed.
207
214
* std: The `finalize` method of `Drop` renamed to `drop`.
215
+ * std: The `drop` method now takes `&mut self` instead of `&self`.
208
216
* std: The prelude no longer reexports any modules, only types and traits.
209
217
* std: Prelude additions: `print`, `println`, `FromStr`, `ApproxEq`, `Equiv`,
210
218
`Iterator`, `IteratorUtil`, many numeric traits, many tuple traits.
0 commit comments