Skip to content

Commit 1b7dd22

Browse files
committedApr 19, 2023
Auto merge of #110414 - pietroalbini:pa-1.70.0-beta, r=Mark-Simulacrum
[beta] Prepare Rust 1.70.0 This PR replaces the version placeholders, and changes the channel to `beta`. r? `@ghost` cc `@rust-lang/release`
2 parents ce1073b + 988610a commit 1b7dd22

Some content is hidden

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

47 files changed

+165
-113
lines changed
 

‎compiler/rustc_feature/src/accepted.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ declare_features! (
239239
/// Allows using `Self` and associated types in struct expressions and patterns.
240240
(accepted, more_struct_aliases, "1.16.0", Some(37544), None),
241241
/// Allows using the MOVBE target feature.
242-
(accepted, movbe_target_feature, "CURRENT_RUSTC_VERSION", Some(44839), None),
242+
(accepted, movbe_target_feature, "1.70.0", Some(44839), None),
243243
/// Allows patterns with concurrent by-move and by-ref bindings.
244244
/// For example, you can write `Foo(a, ref b)` where `a` is by-move and `b` is by-ref.
245245
(accepted, move_ref_pattern, "1.49.0", Some(68354), None),

‎compiler/rustc_feature/src/active.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ declare_features! (
417417
/// Allows `if let` guard in match arms.
418418
(active, if_let_guard, "1.47.0", Some(51114), None),
419419
/// Allows `impl Trait` to be used inside associated types (RFC 2515).
420-
(active, impl_trait_in_assoc_type, "CURRENT_RUSTC_VERSION", Some(63063), None),
420+
(active, impl_trait_in_assoc_type, "1.70.0", Some(63063), None),
421421
/// Allows `impl Trait` as output type in `Fn` traits in return position of functions.
422422
(active, impl_trait_in_fn_trait_return, "1.64.0", Some(99697), None),
423423
/// Allows referencing `Self` and projections in impl-trait.
@@ -498,7 +498,7 @@ declare_features! (
498498
/// Allows return-position `impl Trait` in traits.
499499
(incomplete, return_position_impl_trait_in_trait, "1.65.0", Some(91611), None),
500500
/// Allows bounding the return type of AFIT/RPITIT.
501-
(incomplete, return_type_notation, "CURRENT_RUSTC_VERSION", Some(109417), None),
501+
(incomplete, return_type_notation, "1.70.0", Some(109417), None),
502502
/// Allows `extern "rust-cold"`.
503503
(active, rust_cold_cc, "1.63.0", Some(97544), None),
504504
/// Allows the use of SIMD types in functions declared in `extern` blocks.
@@ -521,7 +521,7 @@ declare_features! (
521521
/// Dyn upcasting is casting, e.g., `dyn Foo -> dyn Bar` where `Foo: Bar`.
522522
(active, trait_upcasting, "1.56.0", Some(65991), None),
523523
/// Allows for transmuting between arrays with sizes that contain generic consts.
524-
(active, transmute_generic_consts, "CURRENT_RUSTC_VERSION", Some(109929), None),
524+
(active, transmute_generic_consts, "1.70.0", Some(109929), None),
525525
/// Allows #[repr(transparent)] on unions (RFC 2645).
526526
(active, transparent_unions, "1.37.0", Some(60405), None),
527527
/// Allows inconsistent bounds in where clauses.

0 commit comments

Comments
 (0)
Please sign in to comment.