Skip to content

Commit a7890c7

Browse files
committed
Auto merge of #84985 - pietroalbini:bootstrap-1.54, r=Mark-Simulacrum
Bump bootstrap compiler to beta 1.53.0 This PR bumps the bootstrap compiler to version 1.53.0 beta, as part of our usual release process (this was supposed to be Wednesday's step, but creating the beta release took longer than expected). The PR also includes the "Bootstrap: skip rustdoc fingerprint for building docs" commit, see the reasoning [on Zulip](https://zulip-archive.rust-lang.org/241545trelease/88450153betabootstrap.html). r? `@Mark-Simulacrum`
2 parents d568d63 + 9e22b84 commit a7890c7

File tree

43 files changed

+22
-67
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+22
-67
lines changed

compiler/rustc_apfloat/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
#![forbid(unsafe_code)]
3636
#![feature(iter_zip)]
3737
#![feature(nll)]
38-
#![cfg_attr(bootstrap, feature(or_patterns))]
3938

4039
#[macro_use]
4140
extern crate alloc;

compiler/rustc_ast/src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,13 @@
1010
)]
1111
#![feature(box_syntax)]
1212
#![feature(box_patterns)]
13-
// On bootstrap bump, this will likely have to become const_fn_unsize
14-
#![cfg_attr(bootstrap, feature(const_fn))] // For the `transmute` in `P::new`
13+
#![cfg_attr(bootstrap, feature(const_fn_unsize))]
1514
#![feature(const_fn_transmute)]
1615
#![feature(const_panic)]
1716
#![feature(crate_visibility_modifier)]
1817
#![feature(iter_zip)]
1918
#![feature(label_break_value)]
2019
#![feature(nll)]
21-
#![cfg_attr(bootstrap, feature(or_patterns))]
2220
#![recursion_limit = "256"]
2321

2422
#[macro_use]

compiler/rustc_ast_lowering/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131
//! in the HIR, especially for multiple identifiers.
3232
3333
#![feature(crate_visibility_modifier)]
34-
#![cfg_attr(bootstrap, feature(or_patterns))]
3534
#![feature(box_patterns)]
3635
#![feature(iter_zip)]
3736
#![recursion_limit = "256"]

compiler/rustc_ast_pretty/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#![feature(bool_to_option)]
22
#![feature(crate_visibility_modifier)]
3-
#![cfg_attr(bootstrap, feature(or_patterns))]
43
#![feature(box_patterns)]
54
#![recursion_limit = "256"]
65

compiler/rustc_attr/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
//! The goal is to move the definition of `MetaItem` and things that don't need to be in `syntax`
55
//! to this crate.
66
7-
#![cfg_attr(bootstrap, feature(or_patterns))]
8-
97
#[macro_use]
108
extern crate rustc_macros;
119

compiler/rustc_builtin_macros/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
#![feature(decl_macro)]
1010
#![feature(iter_zip)]
1111
#![feature(nll)]
12-
#![cfg_attr(bootstrap, feature(or_patterns))]
1312
#![feature(proc_macro_internals)]
1413
#![feature(proc_macro_quote)]
1514
#![recursion_limit = "256"]

compiler/rustc_codegen_llvm/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
#![feature(in_band_lifetimes)]
1414
#![feature(iter_zip)]
1515
#![feature(nll)]
16-
#![cfg_attr(bootstrap, feature(or_patterns))]
1716
#![recursion_limit = "256"]
1817

1918
use back::write::{create_informational_target_machine, create_target_machine};

compiler/rustc_codegen_ssa/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
#![feature(try_blocks)]
77
#![feature(in_band_lifetimes)]
88
#![feature(nll)]
9-
#![cfg_attr(bootstrap, feature(or_patterns))]
109
#![feature(associated_type_bounds)]
1110
#![feature(iter_zip)]
1211
#![recursion_limit = "256"]

compiler/rustc_expand/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#![feature(decl_macro)]
44
#![feature(destructuring_assignment)]
55
#![feature(iter_zip)]
6-
#![cfg_attr(bootstrap, feature(or_patterns))]
76
#![feature(proc_macro_diagnostic)]
87
#![feature(proc_macro_internals)]
98
#![feature(proc_macro_span)]

compiler/rustc_hir/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
#![cfg_attr(bootstrap, feature(extended_key_value_attributes))]
88
#![feature(in_band_lifetimes)]
99
#![feature(once_cell)]
10-
#![cfg_attr(bootstrap, feature(or_patterns))]
1110
#![recursion_limit = "256"]
1211

1312
#[macro_use]

0 commit comments

Comments
 (0)