about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPaul Stansifer <paul.stansifer@gmail.com>2012-12-05 23:49:48 -0500
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-12-06 15:01:40 -0800
commitb84caefdbc8882bb15f35cb48d765d028bf530ac (patch)
treeb9f3153a9497bd2fcba496a32b42d3b006a06fbe
parentd0c2d6c54e6d88a68a3b3e4da6433afcf94a21ac (diff)
downloadrust-b84caefdbc8882bb15f35cb48d765d028bf530ac.tar.gz
rust-b84caefdbc8882bb15f35cb48d765d028bf530ac.zip
Mention statement macros also in release notes, for completeness.
-rw-r--r--RELEASES.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASES.txt b/RELEASES.txt
index c306d4eff25..e265ae77aa8 100644
--- a/RELEASES.txt
+++ b/RELEASES.txt
@@ -8,7 +8,7 @@ Version 0.5 (December 2012)
       * Completed the transition from the `#fmt` extension syntax to `fmt!`
       * Removed old fixed length vector syntax - `[T]/N`
       * New token-based quasi-quoter, `quote!`
-      * Macros may now expand to items
+      * Macros may now expand to items and statements
       * `a.b()` is always parsed as a method call, never as a field projection
       * `Eq` and `IterBytes` implementations can be automatically generated
         with `#[deriving_eq]` and `#[deriving_iter_bytes]` respectively