1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {% import "_issues_with_meta.tt" as issues %}
- ## Stable nominations
- - [All stable nominations](https://github.com/rust-lang/rust/issues?q=is%3Aall+label%3Astable-nominated+-label%3Astable-accepted)
- - Add T-compiler, libs-impl or T-rustdoc tag when it corresponds.
- - Do a sanity check on them.
- ### Issues
- {{-issues::render(issues=nominations_stable_nominated, empty="There are no stable nominations this time.")}}
- ## Beta nominations
- - [All beta nominations](https://github.com/rust-lang/rust/issues?q=is%3Aall+label%3Abeta-nominated+-label%3Abeta-accepted)
- - Add T-compiler, libs-impl or T-rustdoc tag when it corresponds.
- - Do a sanity check on them.
- ### Issues
- {{-issues::render(issues=nominations_beta_nominated, empty="There are no beta nominations this time.")}}
- ## I-nominated
- 1. [All I-nominated](https://github.com/rust-lang/rust/labels/I-nominated)
- - Add T-compiler or libs-impl tag when it corresponds.
- - Do a sanity check on them.
- ### Issues
- {{-issues::render(issues=nominations_i_nominated, empty="There are no I-nominated issues this time.")}}
- 2. [I-nominated T-compiler](https://github.com/rust-lang/rust/issues?utf8=%E2%9C%93&q=is%3Aopen+label%3AI-nominated+label%3AT-compiler)
- - Remove leftovers from last meeting.
- - Do a sanity check on them.
- ### Issues
- {{-issues::render(issues=nominations_i_nominated_t_compiler, empty="There are no I-nominated issues for T-compiler this time.")}}
- 3. [I-nominated libs-impl](https://github.com/rust-lang/rust/issues?utf8=%E2%9C%93&q=is%3Aopen+label%3AI-nominated+label%3Alibs-impl)
- - Remove leftovers from last meeting.
- - Do a sanity check on them.
- ### Issues
- {{-issues::render(issues=nominations_i_nominated_libs_impl, empty="There are no I-nominated issues for libs-impl this time.")}}
|