@@ -31,6 +31,7 @@ Version 0.8 (October 2013)
3131 * `ref` bindings in irrefutable patterns work correctly now.
3232 * `char` is now prevented from containing invalid code points.
3333 * Casting to `bool` is no longer allowed.
34+ * `\0` is now accepted as an escape in chars and strings.
3435 * `yield` is a reserved keyword.
3536 * `typeof` is a reserved keyword.
3637 * Crates may be imported by URL with `extern mod foo = "url";`.
@@ -111,6 +112,9 @@ Version 0.8 (October 2013)
111112 the `MutableSet` and `MutableMap` traits. `Container::is_empty`,
112113 `Map::contains_key`, `MutableMap::insert`, and `MutableMap::remove` have
113114 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.
114118 * extra: `dlist`, the doubly-linked list was modernized.
115119 * extra: Added a `hex` module with `ToHex` and `FromHex` traits.
116120 * extra: Added `glob` module, replacing `std::os::glob`.
@@ -125,6 +129,9 @@ Version 0.8 (October 2013)
125129 * extra: `semver` updated to SemVer 2.0.0.
126130 * extra: `term` handles more terminals correctly.
127131 * 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.
128135
129136 * Other
130137 * rustc's debug info generation (`-Z debug-info`) is greatly improved.
@@ -205,6 +212,7 @@ Version 0.7 (July 2013)
205212 * std: Many old internal vector and string iterators,
206213 incl. `any`, `all`. removed.
207214 * std: The `finalize` method of `Drop` renamed to `drop`.
215+ * std: The `drop` method now takes `&mut self` instead of `&self`.
208216 * std: The prelude no longer reexports any modules, only types and traits.
209217 * std: Prelude additions: `print`, `println`, `FromStr`, `ApproxEq`, `Equiv`,
210218 `Iterator`, `IteratorUtil`, many numeric traits, many tuple traits.
0 commit comments