Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d4031d0
String.split_terminator: Add an example when using a slice of chars
sylvestre Sep 6, 2021
6189d0a
Fix stabilization version for `bindings_after_at`
camelid Oct 6, 2021
e7f0485
rustc_driver: Enable the `WARN` log level by default
hawkw Oct 7, 2021
eb67bf9
Update compiler/rustc_driver/src/lib.rs
hawkw Oct 7, 2021
0180302
demote `rustc_peek` traces look not user-facing
hawkw Oct 7, 2021
928c787
make them structured while i'm here
hawkw Oct 7, 2021
e00eac8
use structured fields in some existing warnings
hawkw Oct 7, 2021
b6f09a1
comma-related changes
hawkw Oct 7, 2021
0e79545
lol i forgot the syntax for my own crate's macros
hawkw Oct 7, 2021
84fc5db
bless warnings
hawkw Oct 8, 2021
82c974d
Fix minor std::thread documentation typo
marcelo-gonzalez Oct 8, 2021
4a565e5
Fix asm docs typo
asquared31415 Oct 8, 2021
8a4085d
Move read2_abbreviated function into read2.rs
Nicholas-Baron Oct 8, 2021
e27bfb6
Add #[must_use] to stdin/stdout/stderr locks
jkugelman Oct 9, 2021
54d807c
Add #[must_use] to string/char transformation methods
jkugelman Oct 9, 2021
2ec7588
Update library/core/src/num/mod.rs
jkugelman Oct 9, 2021
4a775e4
Rollup merge of #88707 - sylvestre:split_example, r=yaahc
matthiaskrgr Oct 9, 2021
6bd7a7f
Rollup merge of #89605 - camelid:fix-version, r=nagisa
matthiaskrgr Oct 9, 2021
55480f1
Rollup merge of #89634 - hawkw:eliza/enable-err-warn, r=oli-obk
matthiaskrgr Oct 9, 2021
95f2ce2
Rollup merge of #89678 - marcelo-gonzalez:master, r=joshtriplett
matthiaskrgr Oct 9, 2021
3840e1f
Rollup merge of #89684 - asquared31415:asm-doc-fix, r=joshtriplett
matthiaskrgr Oct 9, 2021
45ff2fb
Rollup merge of #89687 - Nicholas-Baron:move_read2_abbreviated, r=Mar…
matthiaskrgr Oct 9, 2021
90afb75
Rollup merge of #89693 - jkugelman:must-use-stdin-stdout-stderr-locks…
matthiaskrgr Oct 9, 2021
a2caa35
Rollup merge of #89694 - jkugelman:must-use-string-transforms, r=josh…
matthiaskrgr Oct 9, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix stabilization version for bindings_after_at
According to the release notes and its PR milestone, it was stabilized
in 1.56.0.
  • Loading branch information
camelid committed Oct 6, 2021
commit 6189d0a116c599804656d7befc3d4d35a49a8681
2 changes: 1 addition & 1 deletion compiler/rustc_feature/src/accepted.rs
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ declare_features! (
(accepted, member_constraints, "1.54.0", Some(61997), None),
/// Allows bindings in the subpattern of a binding pattern.
/// For example, you can write `x @ Some(y)`.
(accepted, bindings_after_at, "1.54.0", Some(65490), None),
(accepted, bindings_after_at, "1.56.0", Some(65490), None),
/// Allows calling `transmute` in const fn
(accepted, const_fn_transmute, "1.56.0", Some(53605), None),
/// Allows accessing fields of unions inside `const` functions.
Expand Down