Fixed team responsible for stabilization (#1181)

This commit is contained in:
Yoh Deadfall 2021-08-05 14:41:16 +03:00 committed by GitHub
parent d111b3ea7e
commit 809f4d1d33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ Furthermore this attribute is needed to mark an intrinsic as callable from
To stabilize a feature, follow these steps: To stabilize a feature, follow these steps:
0. Ask a **@T-libs** member to start an FCP on the tracking issue and wait for 0. Ask a **@T-libs-api** member to start an FCP on the tracking issue and wait for
the FCP to complete (with `disposition-merge`). the FCP to complete (with `disposition-merge`).
1. Change `#[unstable(...)]` to `#[stable(since = "version")]`. 1. Change `#[unstable(...)]` to `#[stable(since = "version")]`.
`version` should be the *current nightly*, i.e. stable+2. You can see which version is `version` should be the *current nightly*, i.e. stable+2. You can see which version is
@ -82,7 +82,7 @@ To stabilize a feature, follow these steps:
3. If applicable, change `#[rustc_const_unstable(...)]` to 3. If applicable, change `#[rustc_const_unstable(...)]` to
`#[rustc_const_stable(since = "version")]`. `#[rustc_const_stable(since = "version")]`.
4. Open a PR against `rust-lang/rust`. 4. Open a PR against `rust-lang/rust`.
- Add the appropriate labels: `@rustbot modify labels: +T-libs`. - Add the appropriate labels: `@rustbot modify labels: +T-libs-api`.
- Link to the tracking issue and say "Closes #XXXXX". - Link to the tracking issue and say "Closes #XXXXX".
You can see an example of stabilizing a feature with You can see an example of stabilizing a feature with