about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAaron Power <Aaronepower@users.noreply.github.com>2017-09-30 11:36:49 +0100
committerGitHub <noreply@github.com>2017-09-30 11:36:49 +0100
commit7ed23f1349220f02813cdce6f159fad912c07b0d (patch)
treee404654dc9fa1db909b7463cd422feda9215fdcb
parente68c20ef625488bde9f2b48b137fe02d63c60938 (diff)
downloadrust-7ed23f1349220f02813cdce6f159fad912c07b0d.tar.gz
rust-7ed23f1349220f02813cdce6f159fad912c07b0d.zip
Update RELEASES.md
-rw-r--r--RELEASES.md13
1 files changed, 10 insertions, 3 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 4f8f83062c5..e65934a89e6 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -13,7 +13,7 @@ Language
   Example:
   ```rust
   fn main() {
-      let x: &'static u32 = 0;
+      let x: &'static u32 = &0;
   }
   ```
 
@@ -21,7 +21,8 @@ Compiler
 --------
 - [Upgraded jemalloc to 4.5.0][43911]
 - [Enabled unwinding panics on Redox][43917]
-- [Now emits a warning when you have an unused `extern crate`][42588]
+- [Now runs LLVM in parallel during translation phase.][43506]
+  This should reduce peak memory usage.
 
 Libraries
 ---------
@@ -34,6 +35,8 @@ Libraries
 Stabilized APIs
 ---------------
 
+[`std::mem::discriminant`]
+
 Cargo
 -----
 - [You can now call `cargo install` with multiple package names][cargo/4216]
@@ -56,6 +59,8 @@ Misc
   at [doc.rust-lang.org/rustdoc](https://doc.rust-lang.org/rustdoc)
 - [Added a preview of RLS has been made available through rustup][44204]
   Install with `rustup component add rls-preview`
+- [`std::os` documentation for Unix, Linux, and Windows now appears on doc.rust-lang.org][43348]
+  Previously only showed `std::os::unix`.
 
 Compatibility Notes
 -------------------
@@ -67,9 +72,10 @@ Compatibility Notes
 - [`unused_results` lint no longer ignores booleans][43728]
 
 [42565]: https://github.com/rust-lang/rust/pull/42565
-[42588]: https://github.com/rust-lang/rust/pull/42588
 [42973]: https://github.com/rust-lang/rust/pull/42973
+[43348]: https://github.com/rust-lang/rust/pull/43348
 [43459]: https://github.com/rust-lang/rust/pull/43459
+[43506]: https://github.com/rust-lang/rust/pull/43506
 [43540]: https://github.com/rust-lang/rust/pull/43540
 [43690]: https://github.com/rust-lang/rust/pull/43690
 [43728]: https://github.com/rust-lang/rust/pull/43728
@@ -88,6 +94,7 @@ Compatibility Notes
 [cargo/4400]: https://github.com/rust-lang/cargo/pull/4400
 [RFC 1969]: https://github.com/rust-lang/rfcs/pull/1969
 [info/43880]: https://github.com/rust-lang/rust/issues/44224#issuecomment-330058902
+[`std::mem::discriminant`]: https://doc.rust-lang.org/std/mem/fn.discriminant.html
 
 Version 1.20.0 (2017-08-31)
 ===========================