@@ -6,7 +6,7 @@ Version 0.8 (October 2013)
6
6
* Language
7
7
* The `for` loop syntax has changed to work with the `Iterator` trait.
8
8
* At long last, unwinding works on Windows.
9
- * Default methods definitely mostly work .
9
+ * Default methods are ready for use .
10
10
* Many trait inheritance bugs fixed.
11
11
* Owned and borrowed trait objects work more reliably.
12
12
* `copy` is no longer a keyword. It has been replaced by the `Clone` trait.
@@ -56,7 +56,7 @@ Version 0.8 (October 2013)
56
56
be specified with `#[link_section = "..."]`.
57
57
* The `proto!` syntax extension for defining bounded message protocols
58
58
was removed.
59
- * `macro_rules!` is hygenic for `let` declarations.
59
+ * `macro_rules!` is hygienic for `let` declarations.
60
60
* The `#[export_name]` attribute specifies the name of a symbol.
61
61
* `unreachable!` can be used to indicate unreachable code, and fails
62
62
if executed.
@@ -92,7 +92,7 @@ Version 0.8 (October 2013)
92
92
* std: Added `SharedPort` to `comm`.
93
93
* std: `Eq` has a default method for `ne`; only `eq` is required
94
94
in implementations.
95
- * std: `Ord` has default methods for `le`, `gt` and `le `; only `lt`
95
+ * std: `Ord` has default methods for `le`, `gt` and `ge `; only `lt`
96
96
is required in implementations.
97
97
* std: `is_utf8` performance is improved, impacting many string functions.
98
98
* std: `os::MemoryMap` provides cross-platform mmap.
@@ -130,6 +130,7 @@ Version 0.8 (October 2013)
130
130
* rustc's debug info generation (`-Z debug-info`) is greatly improved.
131
131
* rustc accepts `--target-cpu` to compile to a specific CPU architecture,
132
132
similarly to gcc's `--march` flag.
133
+ * rustc's performance compiling small crates is much better.
133
134
* rustpkg has received many improvements.
134
135
* rustpkg supports git tags as package IDs.
135
136
* rustpkg builds into target-specific directories so it can be used for
0 commit comments