Skip to content

Commit bc9955e

Browse files
committed
---
yaml --- r: 28527 b: refs/heads/try c: 5db367b h: refs/heads/master i: 28525: a9f915f 28523: 8c83b61 28519: abefe19 28511: 4110f80 v: v3
1 parent 4257db2 commit bc9955e

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
@@ -2,7 +2,7 @@
22
refs/heads/master: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: cd6f24f9d14ac90d167386a56e7a6ac1f0318195
5-
refs/heads/try: 73e8ce1e1f2461995031421b555d48da7f5ea086
5+
refs/heads/try: 5db367b836453c6372777818fbbd15fbbbce40f4
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: d0c6ce338884ee21843f4b40bf6bf18d222ce5df

branches/try/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)