@@ -13,6 +13,7 @@ Version 0.7 (July 2013)
13
13
* At long last, 'argument modes' no longer exist.
14
14
* The `bytes!` macro returns a vector of bytes for string, u8, char,
15
15
and unsuffixed integer literals.
16
+ * `#[static_assert]` makes compile-time assertions about static bools.
16
17
17
18
* Semantic changes
18
19
* The borrow checker has been rewritten with flow-sensitivity, fixing
@@ -34,7 +35,7 @@ Version 0.7 (July 2013)
34
35
* The `#[mutable]` attribute makes a type that would otherwise be
35
36
`Const`, note. TODO this may change to non_freeze before 0.7
36
37
* Unbounded recursion will abort the process after reaching the limit
37
- specified by the `RUST_MAX_STACK` environment variable.
38
+ specified by the `RUST_MAX_STACK` environment variable (default: 1GB) .
38
39
* The `vecs_implicitly_copyable` lint mode has been removed. Vectors
39
40
are never implicitly copyable.
40
41
@@ -46,11 +47,13 @@ Version 0.7 (July 2013)
46
47
* std: Prelude additions: `print`, `println`, `FromStr`, `ApproxEq`, `Equiv`,
47
48
`Iterator`, `IteratorUtil`, many numeric traits, many tuple traits.
48
49
* std: `iterator` module for external iterator objects.
50
+ * std: Many old internal vector and string iterators,
51
+ incl. `any`, `all`. removed.
49
52
* std: new numeric traits: `Fractional`, `Real`, `RealExt`, `Integer`, `Ratio`,
50
53
`Algebraic`, `Trigonometric`, `Exponential`, `Primitive`.
51
54
* std: Tuple traits and accessors defined for up to 12-tuples, e.g.
52
55
`(0, 1, 2).n2()` or `(0, 1, 2).n2_ref()`.
53
- * std: many types implement `Clone` - tuples, @, @mut. TODO
56
+ * std: many types implement `Clone`.
54
57
* std: `path` type renamed to `Path`.
55
58
* std: Many standalone functions removed in favor of methods in
56
59
`vec`, `str`. In the future methods will also work as functions.
@@ -60,16 +63,20 @@ Version 0.7 (July 2013)
60
63
* std: `run` module for spawning processes overhauled.
61
64
* std: Various atomic types added to `unstable::atomic`.
62
65
* std: `LinearMap` and `LinearSet` renamed to `HashMap` and `HashSet`.
66
+ * std: Borrowed pointer functions moved from `ptr` to `borrow`.
63
67
* std: Added `os::mkdir_recursive`.
64
68
* std: Added `os::glob` function performs filesystems globs.
65
69
* std: `FuzzyEq` renamed to `ApproxEq`.
66
70
* std: `Map` now defines `pop` and `swap` methods.
71
+ * std: `Cell` constructors converted to static methods.
72
+ * extra: `rc` module adds the reference counted pointers, `Rc` and `RcMut`.
67
73
* extra: `flate` module moved from `std` to `extra`.
68
74
* extra: `FileInput` implements `std::io::Reader`.
69
75
* extra: `Complex` number type and `complex` module.
70
76
* extra: `Rational` number type and `rational` module.
71
77
* extra: `BigInt`, `BigUint` implement numeric and comparison traits.
72
78
* extra: `term` uses terminfo now, is more correct.
79
+ * extra: `arc` functions converted to methods.
73
80
74
81
* Tooling
75
82
* `unused_unsafe` lint mode for detecting unnecessary `unsafe` blocks.
0 commit comments