@@ -4,6 +4,8 @@ Version 0.7 (July 2013)
4
4
* ??? changes, numerous bugfixes
5
5
6
6
* Syntax changes
7
+ * `impl`s no longer accept a visibility qualifier. Put them on methods
8
+ instead.
7
9
* `use mod` is no longer valid.
8
10
* `fail!` and `assert!` accept `~str`, `&'static str` or `fmt!`-style
9
11
argument list.
@@ -25,6 +27,10 @@ Version 0.7 (July 2013)
25
27
no padding between fields.
26
28
* The `for` loop protocol now requires `for`-iterators to return `bool`
27
29
so they compose better.
30
+ * Trait default methods work more often.
31
+ * Type parameters bound by `Copy` must now be copied explicitly with
32
+ the `copy` keyword.
33
+ * It is now illegal to move out of a dereferenced unsafe pointer.
28
34
* `Option<~T>` is now represented as a nullable pointer.
29
35
* `@mut` does dynamic borrow checks correctly.
30
36
* Macros TODO
@@ -43,26 +49,30 @@ Version 0.7 (July 2013)
43
49
* Libraries
44
50
* The `core` crate was renamed to `std`.
45
51
* The `std` crate was renamed to `extra`.
46
- * `std::mut` removed.
47
- * std: The prelude no longer reexports any modules, only types and traits.
48
- * std: Prelude additions: `print`, `println`, `FromStr`, `ApproxEq`, `Equiv`,
49
- `Iterator`, `IteratorUtil`, many numeric traits, many tuple traits.
50
52
* std: `iterator` module for external iterator objects.
53
+ * Many old-style (internal, higher-order function) iterators replaced by
54
+ implementations of `Iterator`.
51
55
* std: Many old internal vector and string iterators,
52
56
incl. `any`, `all`. removed.
53
- * std: new numeric traits: `Fractional`, `Real`, `RealExt`, `Integer`, `Ratio`,
57
+ * std: The `finalize` method of `Drop` renamed to `drop`.
58
+ * std: The prelude no longer reexports any modules, only types and traits.
59
+ * std: Prelude additions: `print`, `println`, `FromStr`, `ApproxEq`, `Equiv`,
60
+ `Iterator`, `IteratorUtil`, many numeric traits, many tuple traits.
61
+ * std: New numeric traits: `Fractional`, `Real`, `RealExt`, `Integer`, `Ratio`,
54
62
`Algebraic`, `Trigonometric`, `Exponential`, `Primitive`.
55
63
* std: Tuple traits and accessors defined for up to 12-tuples, e.g.
56
64
`(0, 1, 2).n2()` or `(0, 1, 2).n2_ref()`.
57
- * std: many types implement `Clone`.
65
+ * std: Many types implement `Clone`.
58
66
* std: `path` type renamed to `Path`.
67
+ * std: `mut` module and `Mut` type removed.
59
68
* std: Many standalone functions removed in favor of methods and iterators
60
69
in `vec`, `str`. In the future methods will also work as functions.
61
- * std: `reinterpret_cast` removed. Used `transmute`.
70
+ * std: `reinterpret_cast` removed. Use `transmute`.
62
71
* std: ascii string handling in `std::ascii`.
63
72
* std: `Rand` is implemented for ~/@.
64
73
* std: `run` module for spawning processes overhauled.
65
74
* std: Various atomic types added to `unstable::atomic`.
75
+ * std: Various types implement `Zero`.
66
76
* std: `LinearMap` and `LinearSet` renamed to `HashMap` and `HashSet`.
67
77
* std: Borrowed pointer functions moved from `ptr` to `borrow`.
68
78
* std: Added `os::mkdir_recursive`.
@@ -96,7 +106,6 @@ Version 0.7 (July 2013)
96
106
* More and improved library documentation.
97
107
* Various improvements on ARM and Android.
98
108
* Various improvements to MIPS backend.
99
- * jemalloc is the Rust allocator.
100
109
101
110
Version 0.6 (April 2013)
102
111
------------------------
0 commit comments