about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTyler Mandry <tmandry@gmail.com>2021-12-23 01:27:19 +0000
committerTyler Mandry <tmandry@gmail.com>2021-12-23 01:27:19 +0000
commit8fd6e8bb544736be1f35f9d799695692c139f40f (patch)
treea3146d9052ec64fe6836f011462c13e4f434e879
parent0928e5257132f76faa9d3d19c79eeba8f36b462a (diff)
Move RUSTFLAGS compat note to 1.55
-rw-r--r--RELEASES.md9
1 files changed, 4 insertions, 5 deletions
diff --git a/RELEASES.md b/RELEASES.md
index db8ebbbc8bd..1bc08295e48 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -102,11 +102,6 @@ Compatibility Notes
 - [proc_macro: Append .0 to unsuffixed float if it would otherwise become int token][90297]
 - [Refactor weak symbols in std::sys::unix][90846]
 - [rustdoc now rejects some unexpected semicolons in doctests][91026]
-- `RUSTFLAGS` is no longer set for build scripts. This change was made in
-  1.55, but the release notes did not highlight this change. Build scripts
-  should use `CARGO_ENCODED_RUSTFLAGS` instead. See the
-  [documentation](https://doc.rust-lang.org/nightly/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts)
-  for more details.
 
 Internal Changes
 ----------------
@@ -551,6 +546,10 @@ Compatibility Notes
   `Command` would cause them to be ASCII-uppercased.
 - [Rustdoc will now warn on using rustdoc lints that aren't prefixed
   with `rustdoc::`][86849]
+- `RUSTFLAGS` is no longer set for build scripts. Build scripts
+  should use `CARGO_ENCODED_RUSTFLAGS` instead. See the
+  [documentation](https://doc.rust-lang.org/nightly/cargo/reference/environment-variables.html#environment-variables-cargo-sets-for-build-scripts)
+  for more details.
 
 [86849]: https://github.com/rust-lang/rust/pull/86849
 [86513]: https://github.com/rust-lang/rust/pull/86513