Update RELEASES.md

This commit is contained in:
Aaron Power 2017-09-30 11:36:49 +01:00 committed by GitHub
parent e68c20ef62
commit 7ed23f1349

View file

@ -13,7 +13,7 @@ Language
Example: Example:
```rust ```rust
fn main() { fn main() {
let x: &'static u32 = 0; let x: &'static u32 = &0;
} }
``` ```
@ -21,7 +21,8 @@ Compiler
-------- --------
- [Upgraded jemalloc to 4.5.0][43911] - [Upgraded jemalloc to 4.5.0][43911]
- [Enabled unwinding panics on Redox][43917] - [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 Libraries
--------- ---------
@ -34,6 +35,8 @@ Libraries
Stabilized APIs Stabilized APIs
--------------- ---------------
[`std::mem::discriminant`]
Cargo Cargo
----- -----
- [You can now call `cargo install` with multiple package names][cargo/4216] - [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) at [doc.rust-lang.org/rustdoc](https://doc.rust-lang.org/rustdoc)
- [Added a preview of RLS has been made available through rustup][44204] - [Added a preview of RLS has been made available through rustup][44204]
Install with `rustup component add rls-preview` 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 Compatibility Notes
------------------- -------------------
@ -67,9 +72,10 @@ Compatibility Notes
- [`unused_results` lint no longer ignores booleans][43728] - [`unused_results` lint no longer ignores booleans][43728]
[42565]: https://github.com/rust-lang/rust/pull/42565 [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 [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 [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 [43540]: https://github.com/rust-lang/rust/pull/43540
[43690]: https://github.com/rust-lang/rust/pull/43690 [43690]: https://github.com/rust-lang/rust/pull/43690
[43728]: https://github.com/rust-lang/rust/pull/43728 [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 [cargo/4400]: https://github.com/rust-lang/cargo/pull/4400
[RFC 1969]: https://github.com/rust-lang/rfcs/pull/1969 [RFC 1969]: https://github.com/rust-lang/rfcs/pull/1969
[info/43880]: https://github.com/rust-lang/rust/issues/44224#issuecomment-330058902 [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) Version 1.20.0 (2017-08-31)
=========================== ===========================