about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <andersrb@gmail.com>2015-01-06 22:15:10 -0800
committerBrian Anderson <andersrb@gmail.com>2015-01-06 22:15:10 -0800
commitef6126a495d045ca99544b493193c56df795392a (patch)
treebf1863afbecf4e55c556f2cae6a92c089b8c6526
parent1b59406aec39a7cfc70cf9ef63d1718126631a1c (diff)
parenta63bb9ba7f992b88349504aed2b0cf49ac28ed8d (diff)
downloadrust-ef6126a495d045ca99544b493193c56df795392a.tar.gz
rust-ef6126a495d045ca99544b493193c56df795392a.zip
Merge pull request #25 from aturon/relnotes-updates
Add int discussion, tweak wording
-rw-r--r--RELEASES.md9
1 files changed, 7 insertions, 2 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 588313131e5..ec291e4a242 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -6,11 +6,15 @@ Version 1.0.0-alpha (January 2015)
   * Highlights
 
     * The language itself is considered feature complete for 1.0,
-      though there is a significant amount of cleanup and bugfixes
-      remaining.
+      though there will be many usability improvements and bugfixes
+      before the final release.
     * Nearly 50% of the public API surface of the standard library has
       been declared 'stable'. Those interfaces are unlikely to change
       before 1.0.
+    * The long-running debate over integer types has been
+      [settled][ints]: Rust will ship with types named `isize` and
+      `usize`, rather than `int` and `uint`, for pointer-sized
+      integers. Guidelines will be rolled out during the alpha cycle.
     * Most crates that are not `std` have been moved out of the Rust
       distribution into the Cargo ecosystem so they can evolve
       separately and don't need to be stabilized as quickly, including
@@ -174,6 +178,7 @@ Version 1.0.0-alpha (January 2015)
 [fb]: https://github.com/rust-lang/rfcs/blob/master/text/0212-restore-int-fallback.md
 [objsafe]: https://github.com/rust-lang/rfcs/blob/master/text/0255-object-safety.md
 [assoc]: https://github.com/rust-lang/rfcs/blob/master/text/0195-associated-items.md
+[ints]: https://github.com/rust-lang/rfcs/pull/544#issuecomment-68760871
 
 Version 0.12.0 (October 2014)
 -----------------------------