@@ -13,6 +13,7 @@ Version 0.7 (July 2013)
1313 * At long last, 'argument modes' no longer exist.
1414 * The `bytes!` macro returns a vector of bytes for string, u8, char,
1515 and unsuffixed integer literals.
16+ * `#[static_assert]` makes compile-time assertions about static bools.
1617
1718 * Semantic changes
1819 * The borrow checker has been rewritten with flow-sensitivity, fixing
@@ -34,7 +35,7 @@ Version 0.7 (July 2013)
3435 * The `#[mutable]` attribute makes a type that would otherwise be
3536 `Const`, note. TODO this may change to non_freeze before 0.7
3637 * 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) .
3839 * The `vecs_implicitly_copyable` lint mode has been removed. Vectors
3940 are never implicitly copyable.
4041
@@ -46,11 +47,13 @@ Version 0.7 (July 2013)
4647 * std: Prelude additions: `print`, `println`, `FromStr`, `ApproxEq`, `Equiv`,
4748 `Iterator`, `IteratorUtil`, many numeric traits, many tuple traits.
4849 * std: `iterator` module for external iterator objects.
50+ * std: Many old internal vector and string iterators,
51+ incl. `any`, `all`. removed.
4952 * std: new numeric traits: `Fractional`, `Real`, `RealExt`, `Integer`, `Ratio`,
5053 `Algebraic`, `Trigonometric`, `Exponential`, `Primitive`.
5154 * std: Tuple traits and accessors defined for up to 12-tuples, e.g.
5255 `(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`.
5457 * std: `path` type renamed to `Path`.
5558 * std: Many standalone functions removed in favor of methods in
5659 `vec`, `str`. In the future methods will also work as functions.
@@ -60,16 +63,20 @@ Version 0.7 (July 2013)
6063 * std: `run` module for spawning processes overhauled.
6164 * std: Various atomic types added to `unstable::atomic`.
6265 * std: `LinearMap` and `LinearSet` renamed to `HashMap` and `HashSet`.
66+ * std: Borrowed pointer functions moved from `ptr` to `borrow`.
6367 * std: Added `os::mkdir_recursive`.
6468 * std: Added `os::glob` function performs filesystems globs.
6569 * std: `FuzzyEq` renamed to `ApproxEq`.
6670 * 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`.
6773 * extra: `flate` module moved from `std` to `extra`.
6874 * extra: `FileInput` implements `std::io::Reader`.
6975 * extra: `Complex` number type and `complex` module.
7076 * extra: `Rational` number type and `rational` module.
7177 * extra: `BigInt`, `BigUint` implement numeric and comparison traits.
7278 * extra: `term` uses terminfo now, is more correct.
79+ * extra: `arc` functions converted to methods.
7380
7481 * Tooling
7582 * `unused_unsafe` lint mode for detecting unnecessary `unsafe` blocks.
0 commit comments