11Version 0.6 (March 2013)
22---------------------------
33
4- * ~??? changes, numerous bugfixes
4+ * ~2000 changes, numerous bugfixes
55
66 * TODO:
77 * Ord/Cmp
@@ -39,6 +39,8 @@ Version 0.6 (March 2013)
3939 * Newtype enums removed. Used tuple-structs.
4040 * Trait implementations no longer support visibility modifiers
4141 * Pattern matching over vectors improved and expanded
42+ * `const` renamed to `static` to correspond to lifetime name,
43+ and make room for future `static mut` unsafe mutable globals.
4244
4345 * Semantic changes
4446 * Types with owned pointers or custom destructors move by default,
@@ -52,8 +54,9 @@ Version 0.6 (March 2013)
5254 * Name resolution continues to be tweaked
5355 * Method visibility is inherited from the implementation declaration
5456 * Structural records have been removed
55- * Many more types can be used in constants, including enums,
56- `static lifetime pointers and vectors
57+ * Many more types can be used in static items, including enums
58+ `static-lifetime pointers and vectors
59+ * Pattern matching over vectors improved and expanded
5760 * Typechecking of closure types has been overhauled to
5861 improve inference and eliminate unsoundness
5962
@@ -85,6 +88,7 @@ Version 0.6 (March 2013)
8588 * Improved foreign function ABI implementation for x86, x86_64
8689 * Various memory usage improvements
8790 * Rust code may be embedded in foreign code under limited circumstances
91+ * Inline assembler supported by new asm!() syntax extension.
8892
8993Version 0.5 (December 2012)
9094---------------------------
0 commit comments