|
| 1 | +Version 0.4 (September 2012) |
| 2 | + |
| 3 | + * ~1500 changes |
| 4 | + |
| 5 | + * Syntax |
| 6 | + * All keywords are now strict and may not be used as identifiers anywhere |
| 7 | + * Keyword removal: 'again', 'import', 'check', 'new', 'owned', 'send', |
| 8 | + 'of', 'with', 'to', 'class'. |
| 9 | + * Classes are replaced with simpler structs |
| 10 | + * Method self types |
| 11 | + * `ret` became `return` and `alt` became `match` |
| 12 | + |
| 13 | + * Semantics |
| 14 | + * Trait implementations are now coherent, ala Haskell typeclasses |
| 15 | + * Borrowed pointers are much more mature and recommended for use |
| 16 | + * Strings and vectors in the static region are stored in constant memory |
| 17 | + * Typestate was removed |
| 18 | + * Resolution is rewritten to be more reliable |
| 19 | + * Support for 'dual-mode' data structures (freezing and thawing) |
| 20 | + * Last-use analysis is only used for warnings now. Moves must be explicit |
| 21 | + for lvalues (TODO: confirm) |
| 22 | + |
| 23 | + * Libraries |
| 24 | + * Most binary operators can now be overloaded via the traits in |
| 25 | + `core::ops' |
| 26 | + * `std::net::url` for representing URLs |
| 27 | + * Sendable hash maps in `core::send_map` |
| 28 | + * `core::task' gained a (currently very unsafe) task-local storage API |
| 29 | + |
| 30 | + * Concurrency |
| 31 | + * An effecient new intertask communication primitive called `core::pipes` |
| 32 | + * `std::arc`, an atomically reference counted, immutable, shared memory |
| 33 | + type |
| 34 | + * `std::sync`, various exotic synchronization tools based on arcs and pipes |
| 35 | + * Futures are now based on pipes and sendable |
| 36 | + * More robust linked task failure |
| 37 | + * Improved task builder API |
| 38 | + |
| 39 | + * Other |
| 40 | + * Improved error reporting |
| 41 | + * Preliminary JIT support |
| 42 | + * Preliminary work on precise GC |
| 43 | + * Extensive architectural improvements to rustc |
| 44 | + * Begun a transition away from buggy C++-based reflection (shape) code to |
| 45 | + Rust-based (visitor) code |
| 46 | + * Hash functions improved across the codebase (TODO: need details) |
| 47 | + * New lint checks (TODO: which?) |
| 48 | + |
1 | 49 | Version 0.3 (July 2012)
|
2 | 50 | ------------------------
|
3 | 51 |
|
|
0 commit comments