From 0cefbc57a11fd3312eda0c7d6ca7b7ced96251de Mon Sep 17 00:00:00 2001 From: Erin Power Date: Tue, 9 Feb 2021 10:23:49 +0000 Subject: [PATCH 01/12] Update RELEASES.md for 1.51.0 --- RELEASES.md | 148 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 148 insertions(+) diff --git a/RELEASES.md b/RELEASES.md index 18492213a5dd..4dff34e3d0bb 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,151 @@ +Version 1.51.0 (2021-03-25) +============================ + +Language +-------- +- [You can now parameterize items such as functions, traits, and `struct`s by constant + values in addition to by types.][78135] E.g. You can now write the following. Note: + Only values of primitive integers, `bool`, or `char` types are currently permitted. + ```rust + struct GenericArray { + inner: [T; LENGTH] + } + + impl GenericArray { + const fn last(&self) -> Option<&T> { + if LENGTH == 0 { + None + } else { + Some(&self.inner[LENGTH-1]) + } + } + } + ``` + + +Compiler +-------- + +- [Added the `-Csplit-debuginfo` codegen option.][79570] This option controls whether + debug information is split across multiple files or packed into a single file. +- [Added tier 3\* support for `aarch64_be-unknown-linux-gnu`, `aarch64-unknown-linux-gnu_ilp32`, + and `aarch64_be-unknown-linux-gnu_ilp32` targets.][81455] +- [Added tier 3 support for `i386-unknown-linux-gnu` and `i486-unknown-linux-gnu` targets.][80662] +- [The `target-cpu=native` option will now detect individual features of CPUs.][80749] +- [Rust now uses `inline-asm` for stack probes when used with LLVM 11.0.1+][77885] + +Libraries +--------- + +- [`Box::downcast` is now also implemented for any `dyn Any + Send + Sync` object.][80945] +- [`str` now implements `AsMut`.][80279] +- [`u64` and `u128` now implement `From`.][79502] +- [`Error` is now implemented for `&T` where `T` implements `Error`.][75180] +- [`Poll::{map_ok, map_err}` are now implemented for `Poll>>`.][80968] +- [`unsigned_abs` is now implemented for all signed integer types.][80959] +- [`io::Empty` now implements `io::Seek`.][78044] +- [`rc::Weak` and `sync::Weak`'s methods such as `as_ptr` are now implemented for + `T: ?Sized` types.][80764] + +Stabilized APIs +--------------- + +- [`Arc::decrement_strong_count`] +- [`Arc::increment_strong_count`] +- [`Once::call_once_force`] +- [`Peekable::next_if_eq`] +- [`Peekable::next_if`] +- [`Seek::stream_position`] +- [`array::IntoIter`] +- [`panic::panic_any`] +- [`ptr::addr_of!`] +- [`ptr::addr_of_mut!`] +- [`slice::SlicePattern`] +- [`slice::fill_with`] +- [`slice::split_inclusive_mut`] +- [`slice::split_inclusive`] +- [`slice::strip_prefix`] +- [`slice::strip_suffix`] +- [`str::split_inclusive`] +- [`sync::OnceState`] +- [`task::Wake`] + +Rustdoc +------- + +- [Rustdoc will now include documentation for methods available from `Deref` traits.][80653] +- [You can now provide a `--default-theme` flag which sets the default theme to use for + documentation.][79642] + +Various improvements to intra-doc links: + + - [You can link to no path based primitives such as `slice`.][80181] + - [You can link to associated items.][74489] + - [You can now link to items with generics such as `Vec`.][76934] + +Misc +---- +- [You can now pass `--include-ignored` to tests (e.g. with + `cargo test -- --include-ignored`) to include testing tests marked `#[ignore]`.][80053] + +Compatibility Notes +------------------- + +- [Bumped the minimum `g++` for `linux-gnu` targets to `g++-8` from `g++-7`.][81521] +- [WASI platforms no longer use the `wasm-bindgen` ABI.][79998] +- [rustc no longer promotes division, modulo and indexing operations to `const` that + could fail.][80579] + +Internal Only +------------- + +- [Consistently avoid constructing optimized MIR when not doing codegen][80718] + +[78135]: https://github.com/rust-lang/rust/pull/78135 +[74489]: https://github.com/rust-lang/rust/pull/74489 +[76934]: https://github.com/rust-lang/rust/pull/76934 +[79570]: https://github.com/rust-lang/rust/pull/79570 +[80181]: https://github.com/rust-lang/rust/pull/80181 +[79642]: https://github.com/rust-lang/rust/pull/79642 +[80945]: https://github.com/rust-lang/rust/pull/80945 +[80279]: https://github.com/rust-lang/rust/pull/80279 +[80053]: https://github.com/rust-lang/rust/pull/80053 +[79502]: https://github.com/rust-lang/rust/pull/79502 +[75180]: https://github.com/rust-lang/rust/pull/75180 +[79135]: https://github.com/rust-lang/rust/pull/79135 +[81521]: https://github.com/rust-lang/rust/pull/81521 +[80968]: https://github.com/rust-lang/rust/pull/80968 +[80959]: https://github.com/rust-lang/rust/pull/80959 +[80718]: https://github.com/rust-lang/rust/pull/80718 +[80653]: https://github.com/rust-lang/rust/pull/80653 +[80579]: https://github.com/rust-lang/rust/pull/80579 +[79998]: https://github.com/rust-lang/rust/pull/79998 +[78044]: https://github.com/rust-lang/rust/pull/78044 +[81455]: https://github.com/rust-lang/rust/pull/81455 +[80764]: https://github.com/rust-lang/rust/pull/80764 +[80749]: https://github.com/rust-lang/rust/pull/80749 +[80662]: https://github.com/rust-lang/rust/pull/80662 +[77885]: https://github.com/rust-lang/rust/pull/77885 +[`Once::call_once_force`]: https://doc.rust-lang.org/stable/std/sync/struct.Once.html#method.call_once_force +[`sync::OnceState`]: https://doc.rust-lang.org/stable/std/sync/struct.OnceState.html +[`panic::panic_any`]: https://doc.rust-lang.org/stable/std/panic/fn.panic_any.html +[`slice::strip_prefix`]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.strip_prefix +[`slice::strip_suffix`]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.strip_prefix +[`slice::SlicePattern`]: https://doc.rust-lang.org/nightly/core/slice/trait.SlicePattern.html +[`Arc::increment_strong_count`]: https://doc.rust-lang.org/nightly/std/sync/struct.Arc.html#method.increment_strong_count +[`Arc::decrement_strong_count`]: https://doc.rust-lang.org/nightly/std/sync/struct.Arc.html#method.decrement_strong_count +[`slice::fill_with`]: https://doc.rust-lang.org/nightly/std/primitive.slice.html#method.fill_with +[`ptr::addr_of!`]: https://doc.rust-lang.org/nightly/std/ptr/macro.addr_of.html +[`ptr::addr_of_mut!`]: https://doc.rust-lang.org/nightly/std/ptr/macro.addr_of_mut.html +[`array::IntoIter`]: https://doc.rust-lang.org/nightly/std/array/struct.IntoIter.html +[`slice::split_inclusive`]: https://doc.rust-lang.org/nightly/std/primitive.slice.html#method.split_inclusive +[`slice::split_inclusive_mut`]: https://doc.rust-lang.org/nightly/std/primitive.slice.html#method.split_inclusive_mut +[`str::split_inclusive`]: https://doc.rust-lang.org/nightly/std/primitive.str.html#method.split_inclusive +[`task::Wake`]: https://doc.rust-lang.org/nightly/std/task/trait.Wake.html +[`Seek::stream_position`]: https://doc.rust-lang.org/nightly/std/io/trait.Seek.html#method.stream_position +[`Peekable::next_if`]: https://doc.rust-lang.org/nightly/std/iter/struct.Peekable.html#method.next_if +[`Peekable::next_if_eq`]: https://doc.rust-lang.org/nightly/std/iter/struct.Peekable.html#method.next_if_eq + Version 1.50.0 (2021-02-11) ============================ From cc5667a094c319693425291a312bab4bdf80731f Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Tue, 9 Feb 2021 11:03:50 +0000 Subject: [PATCH 02/12] Update RELEASES.md --- RELEASES.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RELEASES.md b/RELEASES.md index 4dff34e3d0bb..05aaa52cb001 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -34,6 +34,9 @@ Compiler - [The `target-cpu=native` option will now detect individual features of CPUs.][80749] - [Rust now uses `inline-asm` for stack probes when used with LLVM 11.0.1+][77885] +\* Refer to Rust's [platform support page][forge-platform-support] for more +information on Rust's tiered platform support. + Libraries --------- From 8dbbe78be6aebc78b09acee57965e5f658679367 Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Tue, 9 Feb 2021 11:11:28 +0000 Subject: [PATCH 03/12] Apply suggestions from code review Co-authored-by: Miguel Ojeda --- RELEASES.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 05aaa52cb001..e6734414f289 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -4,7 +4,7 @@ Version 1.51.0 (2021-03-25) Language -------- - [You can now parameterize items such as functions, traits, and `struct`s by constant - values in addition to by types.][78135] E.g. You can now write the following. Note: + values in addition to by types.][78135] E.g. you can now write the following. Note: Only values of primitive integers, `bool`, or `char` types are currently permitted. ```rust struct GenericArray { @@ -28,7 +28,7 @@ Compiler - [Added the `-Csplit-debuginfo` codegen option.][79570] This option controls whether debug information is split across multiple files or packed into a single file. -- [Added tier 3\* support for `aarch64_be-unknown-linux-gnu`, `aarch64-unknown-linux-gnu_ilp32`, +- [Added tier 3\* support for `aarch64_be-unknown-linux-gnu`, `aarch64-unknown-linux-gnu_ilp32`, and `aarch64_be-unknown-linux-gnu_ilp32` targets.][81455] - [Added tier 3 support for `i386-unknown-linux-gnu` and `i486-unknown-linux-gnu` targets.][80662] - [The `target-cpu=native` option will now detect individual features of CPUs.][80749] @@ -82,7 +82,7 @@ Rustdoc Various improvements to intra-doc links: - - [You can link to no path based primitives such as `slice`.][80181] + - [You can link to non-path primitives such as `slice`.][80181] - [You can link to associated items.][74489] - [You can now link to items with generics such as `Vec`.][76934] @@ -96,7 +96,7 @@ Compatibility Notes - [Bumped the minimum `g++` for `linux-gnu` targets to `g++-8` from `g++-7`.][81521] - [WASI platforms no longer use the `wasm-bindgen` ABI.][79998] -- [rustc no longer promotes division, modulo and indexing operations to `const` that +- [`rustc` no longer promotes division, modulo and indexing operations to `const` that could fail.][80579] Internal Only From cecb8a660c8b159dd7acc815d15ee0cb5f253d20 Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Tue, 9 Feb 2021 14:41:05 +0000 Subject: [PATCH 04/12] Update RELEASES.md Co-authored-by: bluss --- RELEASES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index e6734414f289..2654d61d2aa7 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -16,7 +16,7 @@ Language if LENGTH == 0 { None } else { - Some(&self.inner[LENGTH-1]) + Some(&self.inner[LENGTH - 1]) } } } From 8e24a97c5eb714ff8ec7798f35ef5e64e101c7ea Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Thu, 11 Feb 2021 11:25:32 +0000 Subject: [PATCH 05/12] Update RELEASES.md --- RELEASES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 2654d61d2aa7..a0f05667428d 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -4,7 +4,7 @@ Version 1.51.0 (2021-03-25) Language -------- - [You can now parameterize items such as functions, traits, and `struct`s by constant - values in addition to by types.][78135] E.g. you can now write the following. Note: + values in addition to by types.][79135] E.g. you can now write the following. Note: Only values of primitive integers, `bool`, or `char` types are currently permitted. ```rust struct GenericArray { @@ -104,7 +104,7 @@ Internal Only - [Consistently avoid constructing optimized MIR when not doing codegen][80718] -[78135]: https://github.com/rust-lang/rust/pull/78135 +[79135]: https://github.com/rust-lang/rust/pull/79135 [74489]: https://github.com/rust-lang/rust/pull/74489 [76934]: https://github.com/rust-lang/rust/pull/76934 [79570]: https://github.com/rust-lang/rust/pull/79570 From 35ea03b9e03a27bc471098672a698fd2e64968c7 Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Thu, 11 Feb 2021 13:10:06 +0000 Subject: [PATCH 06/12] Apply suggestions from code review Co-authored-by: bluss --- RELEASES.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index a0f05667428d..7d35e80b3be0 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -63,7 +63,6 @@ Stabilized APIs - [`panic::panic_any`] - [`ptr::addr_of!`] - [`ptr::addr_of_mut!`] -- [`slice::SlicePattern`] - [`slice::fill_with`] - [`slice::split_inclusive_mut`] - [`slice::split_inclusive`] @@ -134,7 +133,6 @@ Internal Only [`panic::panic_any`]: https://doc.rust-lang.org/stable/std/panic/fn.panic_any.html [`slice::strip_prefix`]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.strip_prefix [`slice::strip_suffix`]: https://doc.rust-lang.org/stable/std/primitive.slice.html#method.strip_prefix -[`slice::SlicePattern`]: https://doc.rust-lang.org/nightly/core/slice/trait.SlicePattern.html [`Arc::increment_strong_count`]: https://doc.rust-lang.org/nightly/std/sync/struct.Arc.html#method.increment_strong_count [`Arc::decrement_strong_count`]: https://doc.rust-lang.org/nightly/std/sync/struct.Arc.html#method.decrement_strong_count [`slice::fill_with`]: https://doc.rust-lang.org/nightly/std/primitive.slice.html#method.fill_with From 69e56ad7d16c2a089b83d4d49616daabbf5fac8b Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Sat, 13 Feb 2021 12:19:34 +0000 Subject: [PATCH 07/12] Update RELEASES.md Co-authored-by: Tyler Mandry --- RELEASES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index 7d35e80b3be0..d5bd34d6e5b7 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -83,7 +83,7 @@ Various improvements to intra-doc links: - [You can link to non-path primitives such as `slice`.][80181] - [You can link to associated items.][74489] - - [You can now link to items with generics such as `Vec`.][76934] + - [You can now include generic parameters when linking to items, like `Vec`.][76934] Misc ---- From 0b0fd78c6c49165dc8bcd5867cc291d4f6b1142a Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Mon, 22 Feb 2021 07:55:43 +0100 Subject: [PATCH 08/12] Update RELEASES.md --- RELEASES.md | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index d5bd34d6e5b7..cf2e80cdab3b 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -4,8 +4,9 @@ Version 1.51.0 (2021-03-25) Language -------- - [You can now parameterize items such as functions, traits, and `struct`s by constant - values in addition to by types.][79135] E.g. you can now write the following. Note: - Only values of primitive integers, `bool`, or `char` types are currently permitted. + values in addition to by types and lifetimes.][79135] Also known as "const generics" + E.g. you can now write the following. Note: Only values of primitive integers, + `bool`, or `char` types are currently permitted. ```rust struct GenericArray { inner: [T; LENGTH] @@ -26,10 +27,11 @@ Language Compiler -------- -- [Added the `-Csplit-debuginfo` codegen option.][79570] This option controls whether - debug information is split across multiple files or packed into a single file. -- [Added tier 3\* support for `aarch64_be-unknown-linux-gnu`, `aarch64-unknown-linux-gnu_ilp32`, - and `aarch64_be-unknown-linux-gnu_ilp32` targets.][81455] +- [Added the `-Csplit-debuginfo` codegen option for macOS platforms.][79570] + This option controls whether debug information is split across multiple files + or packed into a single file. **Note** This option is unstable on other platforms. +- [Added tier 3\* support for `aarch64_be-unknown-linux-gnu`, + `aarch64-unknown-linux-gnu_ilp32`, and `aarch64_be-unknown-linux-gnu_ilp32` targets.][81455] - [Added tier 3 support for `i386-unknown-linux-gnu` and `i486-unknown-linux-gnu` targets.][80662] - [The `target-cpu=native` option will now detect individual features of CPUs.][80749] - [Rust now uses `inline-asm` for stack probes when used with LLVM 11.0.1+][77885] @@ -72,6 +74,21 @@ Stabilized APIs - [`sync::OnceState`] - [`task::Wake`] +Cargo +----- +- [Added the `split-debuginfo` profile option to control the -Csplit-debuginfo + codegen option.][cargo/9112] +- [Added the `resolver` field to `Cargo.toml` to enable the new feature resolver + and CLI option behavior.][cargo/8997] Version 2 of the feature resolver will try + to avoid unifying features of dependencies where that unification could be unwanted. + Such as using the same dependency at build time (such as build scripts and + proc-macros). See the [Cargo book documentation][feature-resolver@2.0] + for more information on the feature. + +[feature-resolver@2.0]: https://doc.rust-lang.org/nightly/cargo/reference/features.html#feature-resolver-version-2 +[cargo/8997]: https://github.com/rust-lang/cargo/pull/8997 +[cargo/9112]: https://github.com/rust-lang/cargo/pull/9112 + Rustdoc ------- @@ -94,7 +111,7 @@ Compatibility Notes ------------------- - [Bumped the minimum `g++` for `linux-gnu` targets to `g++-8` from `g++-7`.][81521] -- [WASI platforms no longer use the `wasm-bindgen` ABI.][79998] +- [WASI platforms no longer use the `wasm-bindgen` ABI, and instead use the wasm32 ABI.][79998] - [`rustc` no longer promotes division, modulo and indexing operations to `const` that could fail.][80579] From 68f76cef88b53bf2fc43c7cc94b4d1e53df52ec3 Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Mon, 22 Feb 2021 07:58:08 +0100 Subject: [PATCH 09/12] Update RELEASES.md --- RELEASES.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index cf2e80cdab3b..b96ac84d2a4a 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -81,13 +81,9 @@ Cargo - [Added the `resolver` field to `Cargo.toml` to enable the new feature resolver and CLI option behavior.][cargo/8997] Version 2 of the feature resolver will try to avoid unifying features of dependencies where that unification could be unwanted. - Such as using the same dependency at build time (such as build scripts and - proc-macros). See the [Cargo book documentation][feature-resolver@2.0] - for more information on the feature. - -[feature-resolver@2.0]: https://doc.rust-lang.org/nightly/cargo/reference/features.html#feature-resolver-version-2 -[cargo/8997]: https://github.com/rust-lang/cargo/pull/8997 -[cargo/9112]: https://github.com/rust-lang/cargo/pull/9112 + Such as using the same dependency with a `std` feature in a build scripts and + proc-macros, while using the `no-std` feature in the final binary. See the + [Cargo book documentation][feature-resolver@2.0] for more information on the feature. Rustdoc ------- @@ -145,6 +141,9 @@ Internal Only [80749]: https://github.com/rust-lang/rust/pull/80749 [80662]: https://github.com/rust-lang/rust/pull/80662 [77885]: https://github.com/rust-lang/rust/pull/77885 +[cargo/8997]: https://github.com/rust-lang/cargo/pull/8997 +[cargo/9112]: https://github.com/rust-lang/cargo/pull/9112 +[feature-resolver@2.0]: https://doc.rust-lang.org/nightly/cargo/reference/features.html#feature-resolver-version-2 [`Once::call_once_force`]: https://doc.rust-lang.org/stable/std/sync/struct.Once.html#method.call_once_force [`sync::OnceState`]: https://doc.rust-lang.org/stable/std/sync/struct.OnceState.html [`panic::panic_any`]: https://doc.rust-lang.org/stable/std/panic/fn.panic_any.html From b1182d2a3cbe9ecc556e6eb88ee7233151ed7abd Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Wed, 3 Mar 2021 14:34:34 +0100 Subject: [PATCH 10/12] Update RELEASES.md --- RELEASES.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index b96ac84d2a4a..bf41e5976d64 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -106,10 +106,16 @@ Misc Compatibility Notes ------------------- -- [Bumped the minimum `g++` for `linux-gnu` targets to `g++-8` from `g++-7`.][81521] - [WASI platforms no longer use the `wasm-bindgen` ABI, and instead use the wasm32 ABI.][79998] - [`rustc` no longer promotes division, modulo and indexing operations to `const` that could fail.][80579] +- [The minimum version of `glibc` required when building with the Ubuntu 20.04 toolchain + for the following platforms has been bumped to version 2.31.][81521] + - `armv5te-unknown-linux-gnueabi` + - `sparc64-unknown-linux-gnu` + - `thumbv7neon-unknown-linux-gnueabihf` + - `armv7-unknown-linux-gnueabi` + - `x86_64-unknown-linux-gnux32` Internal Only ------------- From c7d9cdabc18afb9b89bfaf010d303c5e8b34288d Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Thu, 4 Mar 2021 13:01:19 +0100 Subject: [PATCH 11/12] Update RELEASES.md --- RELEASES.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index bf41e5976d64..e4bb9e4108f1 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -94,9 +94,9 @@ Rustdoc Various improvements to intra-doc links: - - [You can link to non-path primitives such as `slice`.][80181] - - [You can link to associated items.][74489] - - [You can now include generic parameters when linking to items, like `Vec`.][76934] +- [You can link to non-path primitives such as `slice`.][80181] +- [You can link to associated items.][74489] +- [You can now include generic parameters when linking to items, like `Vec`.][76934] Misc ---- From c64e796d24210963b55fd3acbb8f145dffe52e20 Mon Sep 17 00:00:00 2001 From: XAMPPRocky <4464295+XAMPPRocky@users.noreply.github.com> Date: Mon, 15 Mar 2021 11:49:17 +0100 Subject: [PATCH 12/12] Update RELEASES.md --- RELEASES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index e4bb9e4108f1..314482c971f9 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -109,8 +109,8 @@ Compatibility Notes - [WASI platforms no longer use the `wasm-bindgen` ABI, and instead use the wasm32 ABI.][79998] - [`rustc` no longer promotes division, modulo and indexing operations to `const` that could fail.][80579] -- [The minimum version of `glibc` required when building with the Ubuntu 20.04 toolchain - for the following platforms has been bumped to version 2.31.][81521] +- [The minimum version of glibc for the following platforms has been bumped to version 2.31 + for the distributed artifacts.][81521] - `armv5te-unknown-linux-gnueabi` - `sparc64-unknown-linux-gnu` - `thumbv7neon-unknown-linux-gnueabihf`