diff options
author | Aaron Power <Aaronepower@users.noreply.github.com> | 2017-10-26 11:03:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-26 11:03:34 +0100 |
commit | 7e2552741987dad46f1462d3540866680629036e (patch) | |
tree | fa8411431acb7fb83cb96b2fb747c09c7ce3d4f5 /RELEASES.md | |
parent | Update RELEASES.md (diff) | |
download | grust-7e2552741987dad46f1462d3540866680629036e.tar.gz grust-7e2552741987dad46f1462d3540866680629036e.tar.bz2 grust-7e2552741987dad46f1462d3540866680629036e.tar.xz |
Update RELEASES.md
Diffstat (limited to 'RELEASES.md')
-rw-r--r-- | RELEASES.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/RELEASES.md b/RELEASES.md index 33f7e708f6..e2bc4cdacc 100644 --- a/RELEASES.md +++ b/RELEASES.md | |||
@@ -6,12 +6,12 @@ Language | |||
6 | - [`non_snake_case` lint now allows extern no-mangle functions][44966] | 6 | - [`non_snake_case` lint now allows extern no-mangle functions][44966] |
7 | - [Now accepts underscores in unicode escapes][43716] | 7 | - [Now accepts underscores in unicode escapes][43716] |
8 | - [`#![feature(const_fn)]` is now no longer required for | 8 | - [`#![feature(const_fn)]` is now no longer required for |
9 | calling const functions.][43017] It's Still required for creating | 9 | calling const functions.][43017] It's still required for creating |
10 | constant functions. | 10 | constant functions. |
11 | 11 | ||
12 | Compiler | 12 | Compiler |
13 | -------- | 13 | -------- |
14 | - [rustc now defaults to having 16 codegen units at debug on supported platforms.][44853] | 14 | - [rustc now defaults to having 16 codegen units at debug on supported platforms.][45064] |
15 | - [rustc will no longer inline in codegen units when compiling for debug][45075] | 15 | - [rustc will no longer inline in codegen units when compiling for debug][45075] |
16 | This should decrease compile times for debug builds. | 16 | This should decrease compile times for debug builds. |
17 | - [strict memory alignment now enabled on ARMv6][45094] | 17 | - [strict memory alignment now enabled on ARMv6][45094] |
@@ -21,8 +21,8 @@ Libraries | |||
21 | --------- | 21 | --------- |
22 | - [Allow atomic operations up to 32 bits | 22 | - [Allow atomic operations up to 32 bits |
23 | on `armv5te_unknown_linux_gnueabi`][44978] | 23 | on `armv5te_unknown_linux_gnueabi`][44978] |
24 | - [`Box<Error>` now impls `Cow<str>`][44466] | 24 | - [`Box<Error>` now impls `From<Cow<str>>`][44466] |
25 | - [`std::mem::Discriminant` is now guarenteed to be `Send + Sync`][45095] | 25 | - [`std::mem::Discriminant` is now guaranteed to be `Send + Sync`][45095] |
26 | - [`fs::copy` now returns the length of the main stream on NTFS.][44895] | 26 | - [`fs::copy` now returns the length of the main stream on NTFS.][44895] |
27 | - [Properly detect overflow in `Instant += Duration`.][44220] | 27 | - [Properly detect overflow in `Instant += Duration`.][44220] |
28 | - [impl `Hasher` for `{&mut Hasher, Box<Hasher>}`][44015] | 28 | - [impl `Hasher` for `{&mut Hasher, Box<Hasher>}`][44015] |