about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2015-01-06 16:44:17 -0800
committerBrian Anderson <banderson@mozilla.com>2015-01-06 16:44:17 -0800
commit0cddbd6e770e782a9c7329f3230f192617a42da4 (patch)
tree8411b10ea99ce5861e56ef0fd8eca38b0798839a
parent9d073134c9845d74bfad6aae78d79d6224610069 (diff)
downloadrust-0cddbd6e770e782a9c7329f3230f192617a42da4.tar.gz
rust-0cddbd6e770e782a9c7329f3230f192617a42da4.zip
Little more relnotes
-rw-r--r--RELEASES.md11
1 files changed, 8 insertions, 3 deletions
diff --git a/RELEASES.md b/RELEASES.md
index fc2d24131de..07e04348225 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -67,9 +67,10 @@ Version 1.0.0-alpha (January 2015)
       characters][unicode].
     * `macro_rules!` [has been declared stable][mac]. Though it is a
       flawed system it is sufficiently popular that it must be usable
-      for 1.0. Effort has gone into future-proofing it in ways that
-      will allow other macro systems to be developed in parallel, and
-      won't otherwise impact the evolution of the language.
+      for 1.0. Effort has gone into [future-proofing][mac-future] it
+      in ways that will allow other macro systems to be developed in
+      parallel, and won't otherwise impact the evolution of the
+      language.
     * The prelude has been [pared back significantly][prelude] such
       that it is the minimum necessary to support the most pervasive
       code patterns, and through [generalized where clauses][where]
@@ -94,6 +95,9 @@ Version 1.0.0-alpha (January 2015)
       items or variants they contain is [now done with `self` instead
       of `mod`][self], as in use `foo::{self, bar}`
     * Glob imports are no longer feature-gated.
+    * The `box` operator and `box` patterns have been feature-gated
+      pending a redesign. For now unique boxes should be allocated
+      like other containers, with `Box::new`.
 
 * Libraries
 
@@ -146,6 +150,7 @@ Version 1.0.0-alpha (January 2015)
 [err-conv]: https://github.com/rust-lang/rfcs/blob/master/text/0236-error-conventions.md
 [rt]: https://github.com/rust-lang/rfcs/blob/master/text/0230-remove-runtime.md
 [mac]: https://github.com/rust-lang/rfcs/blob/master/text/0453-macro-reform.md
+[mac-future]: https://github.com/rust-lang/rfcs/pull/550
 [DST]: http://smallcultfollowing.com/babysteps/blog/2014/01/05/dst-take-5/
 [coll1]: https://github.com/rust-lang/rfcs/blob/master/text/0235-collections-conventions.md
 [coll2]: https://github.com/rust-lang/rfcs/blob/master/text/0509-collections-reform-part-2.md