summary refs log tree commit diff
path: root/RELEASES.md
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-08-24 14:59:38 +0000
committerbors <bors@rust-lang.org>2020-08-24 14:59:38 +0000
commit04488afe34512aa4c33566eb16d8c912a3ae04f9 (patch)
tree7d462ac1856b7eb6651d21bcecefe4f614bf0aad /RELEASES.md
parentcfbc6d4cf1acbac5c025acf8ed68929caa551df3 (diff)
parented6d57b85b2378fefb7f8a2042436960f1f54ba3 (diff)
downloadrust-1.46.0.tar.gz
rust-1.46.0.zip
Auto merge of #75878 - pietroalbini:stable-next, r=Mark-Simulacrum 1.46.0
[stable] Prepare Rust 1.46.0

Also updated the compatibility notes to account for the regressions we didn't fix for this release. The release team evaluated them, and we agreed they're not enough to block the release.

r? @Mark-Simulacrum
cc @rust-lang/release
Diffstat (limited to 'RELEASES.md')
-rw-r--r--RELEASES.md14
1 files changed, 13 insertions, 1 deletions
diff --git a/RELEASES.md b/RELEASES.md
index b3d8c2f65f6..37aed773545 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -68,7 +68,19 @@ Compatibility Notes
 - [Rustc now correctly relates the lifetime of an existential associated
   type.][71896] This fixes some edge cases where `rustc` would erroneously allow
   you to pass a shorter lifetime than expected.
-
+- [Rustc now dynamically links to `libz` (also called `zlib`) on Linux.][74420]
+  The library will need to be installed for `rustc` to work, even though we
+  expect it to be already available on most systems.
+- [Tests annotated with `#[should_panic]` are broken on ARMv7 while running
+  under QEMU.][74820]
+- [Pretty printing of some tokens in procedural macros changed.][75453] The
+  exact output returned by rustc's pretty printing is an unstable
+  implementation detail: we recommend any macro relying on it to switch to a
+  more robust parsing system.
+
+[75453]: https://github.com/rust-lang/rust/issues/75453/
+[74820]: https://github.com/rust-lang/rust/issues/74820/
+[74420]: https://github.com/rust-lang/rust/issues/74420/
 [74109]: https://github.com/rust-lang/rust/pull/74109/
 [74150]: https://github.com/rust-lang/rust/pull/74150/
 [73862]: https://github.com/rust-lang/rust/pull/73862/