Skip to content

Commit 7ed23f1

Browse files
authoredSep 30, 2017
Update RELEASES.md
1 parent e68c20e commit 7ed23f1

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed
 

‎RELEASES.md

+10-3
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@ Language
1313
Example:
1414
```rust
1515
fn main() {
16-
let x: &'static u32 = 0;
16+
let x: &'static u32 = &0;
1717
}
1818
```
1919

2020
Compiler
2121
--------
2222
- [Upgraded jemalloc to 4.5.0][43911]
2323
- [Enabled unwinding panics on Redox][43917]
24-
- [Now emits a warning when you have an unused `extern crate`][42588]
24+
- [Now runs LLVM in parallel during translation phase.][43506]
25+
This should reduce peak memory usage.
2526

2627
Libraries
2728
---------
@@ -34,6 +35,8 @@ Libraries
3435
Stabilized APIs
3536
---------------
3637

38+
[`std::mem::discriminant`]
39+
3740
Cargo
3841
-----
3942
- [You can now call `cargo install` with multiple package names][cargo/4216]
@@ -56,6 +59,8 @@ Misc
5659
at [doc.rust-lang.org/rustdoc](https://doc.rust-lang.org/rustdoc)
5760
- [Added a preview of RLS has been made available through rustup][44204]
5861
Install with `rustup component add rls-preview`
62+
- [`std::os` documentation for Unix, Linux, and Windows now appears on doc.rust-lang.org][43348]
63+
Previously only showed `std::os::unix`.
5964

6065
Compatibility Notes
6166
-------------------
@@ -67,9 +72,10 @@ Compatibility Notes
6772
- [`unused_results` lint no longer ignores booleans][43728]
6873

6974
[42565]: https://github.com/rust-lang/rust/pull/42565
70-
[42588]: https://github.com/rust-lang/rust/pull/42588
7175
[42973]: https://github.com/rust-lang/rust/pull/42973
76+
[43348]: https://github.com/rust-lang/rust/pull/43348
7277
[43459]: https://github.com/rust-lang/rust/pull/43459
78+
[43506]: https://github.com/rust-lang/rust/pull/43506
7379
[43540]: https://github.com/rust-lang/rust/pull/43540
7480
[43690]: https://github.com/rust-lang/rust/pull/43690
7581
[43728]: https://github.com/rust-lang/rust/pull/43728
@@ -88,6 +94,7 @@ Compatibility Notes
8894
[cargo/4400]: https://github.com/rust-lang/cargo/pull/4400
8995
[RFC 1969]: https://github.com/rust-lang/rfcs/pull/1969
9096
[info/43880]: https://github.com/rust-lang/rust/issues/44224#issuecomment-330058902
97+
[`std::mem::discriminant`]: https://doc.rust-lang.org/std/mem/fn.discriminant.html
9198

9299
Version 1.20.0 (2017-08-31)
93100
===========================

0 commit comments

Comments
 (0)
Please sign in to comment.