about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-04-23 20:06:31 +0200
committerGitHub <noreply@github.com>2023-04-23 20:06:31 +0200
commit77e98f42e68c289d291f2b719d1ca5edeb5d6970 (patch)
tree7739e465e533024a9a4bdeab4ce97cfbc72fb4de
parent4064bdd914fa3d6c08e821487c77c177188b6fbb (diff)
parent6ecdd0377c0db8e1d0446abf7cff5d15f53b0c8f (diff)
downloadrust-77e98f42e68c289d291f2b719d1ca5edeb5d6970.tar.gz
rust-77e98f42e68c289d291f2b719d1ca5edeb5d6970.zip
Rollup merge of #110663 - Mark-Simulacrum:add-compat-note, r=cuviper
Add note about change in bootstrap defaults

Not a huge fan of the proposed wording, open to changes in that.

Per https://github.com/rust-lang/rust/pull/106886#issuecomment-1518325832.
cc `@jonhoo`

r? `@cuviper` perhaps?
-rw-r--r--RELEASES.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 699735de6fb..e72905c15bd 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -88,7 +88,11 @@ Compatibility Notes
 - [When `default-features` is set to false of a workspace dependency, and an inherited dependency of a member has `default-features = true`, Cargo will enable default features of that dependency.](https://github.com/rust-lang/cargo/pull/11409/)
 - [Cargo denies `CARGO_HOME` in the `[env]` configuration table. Cargo itself doesn't pick up this value, but recursive calls to cargo would, which was not intended.](https://github.com/rust-lang/cargo/pull/11644/)
 - [Debuginfo for build dependencies is now off if not explicitly set. This is expected to improve the overall build time.](https://github.com/rust-lang/cargo/pull/11252/)
-
+- [The Rust distribution no longer always includes rustdoc](https://github.com/rust-lang/rust/pull/106886)
+  If `tools = [...]` is set in config.toml, we will respect a missing rustdoc in that list. By
+  default rustdoc remains included. To retain the prior behavior explicitly add `"rustdoc"` to the
+  list.
+  
 <a id="1.69.0-Internal-Changes"></a>
 
 Internal Changes