Skip to content

Commit 45bb087

Browse files
committed
---
yaml --- r: 32611 b: refs/heads/dist-snap c: 5db367b h: refs/heads/master i: 32609: c6bf9a6 32607: 8baf1a1 v: v3
1 parent 5933c75 commit 45bb087

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df
99
refs/heads/incoming: d9317a174e434d4c99fc1a37fd7dc0d2f5328d37
10-
refs/heads/dist-snap: 73e8ce1e1f2461995031421b555d48da7f5ea086
10+
refs/heads/dist-snap: 5db367b836453c6372777818fbbd15fbbbce40f4
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/dist-snap/RELEASES.txt

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,51 @@
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+
149
Version 0.3 (July 2012)
250
------------------------
351

0 commit comments

Comments
 (0)