You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add some guidance on rollups and priorities. (#402)
* Add some guidance on rollups and priorities.
* Update for comments from manishearth.
* Clarify relationship of maybe and iffy.
* Update link to rollups section.
* Clarify rollup=maybe default.
* Remove "pure refactoring" from rollup guidance.
Copy file name to clipboardExpand all lines: src/libs/maintaining-std.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -217,7 +217,7 @@ PRs to [`rust-lang/rust`] aren’t merged manually using GitHub’s UI or by pus
217
217
218
218
For Libs PRs, rolling up is usually fine, in particular if it's only a new unstable addition or if it only touches docs (with the exception of intra doc links which complicates things while the feature has bugs...).
219
219
220
-
If a submodule is affected then probably don't `rollup`. If the feature affects perf then also avoid `rollup` -- mark it as `rollup=never`.
220
+
See the [rollup guidelines] for more details on when to rollup.
221
221
222
222
### When there’s new public items
223
223
@@ -263,3 +263,4 @@ Where `unsafe` and `const` is involved, e.g., for operations which are "unconst"
0 commit comments