Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Send people doing *library* stabilizations over to the std-dev-guide #1317

Merged
merged 2 commits into from
Apr 14, 2022

Conversation

scottmcm
Copy link
Member

Because sending people doing library stabilization to feature_gate.rs will just result in confusion.

Copy link
Contributor

@ehuss ehuss left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm sometimes a little confused why some things are documented here and some are in the std dev guide. Would it make sense to try to avoid the duplication? What are the guidelines for what is here vs there?

Comment on lines 214 to 215
found by consulting [the forge](https://forge.rust-lang.org/#current-release-versions).
Specifically, you'll want to use the version labelled "Nightly".
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Although this is a perfectly fine way to check the version, it might be more reliable to consult src/version on master. That can help avoid confusion with the version bump that happens on the Friday before release.

I might also suggest predicting the version that it will land in. If it looks like it might land around the Friday before release, then there is risk that it will miss the release window.

Finally, I might suggest putting this discussion of determining the version into a dedicated section and removing the duplicate discussion above with lang stabilizations. For the most part, the process is the same between them. (And the lang one is not written as clearly.)

It is not uncommon that PRs are approved with the wrong version in them, and then there is confusion if it isn't caught, or triggers busywork for backports and such. It would be nice to be a little more careful about that.

@scottmcm
Copy link
Member Author

I'm sometimes a little confused why some things are documented here and some are in the std dev guide.

Oh. Well, that would be because I didn't know the std dev guide existed, so looked in the wrong place 😥

I'll change this to just have a pointer to that, and send a PR over there with the examples.

@scottmcm scottmcm added the S-waiting-on-author Status: this PR is waiting for additional action by the OP label Feb 26, 2022
@scottmcm scottmcm changed the title Add a separate Stabilization PR section for Library Features Send people doing *library* stabilizations over the the std-dev-guide Feb 26, 2022
@scottmcm scottmcm added S-waiting-on-review Status: this PR is waiting for a reviewer to verify its content and removed S-waiting-on-author Status: this PR is waiting for additional action by the OP labels Feb 26, 2022
@scottmcm
Copy link
Member Author

Ok, I've re-done the update here.

PR to std-dev-guide to happen in future.

src/stabilization_guide.md Outdated Show resolved Hide resolved
src/stabilization_guide.md Outdated Show resolved Hide resolved
@camelid camelid changed the title Send people doing *library* stabilizations over the the std-dev-guide Send people doing *library* stabilizations over to the std-dev-guide Mar 4, 2022
@scottmcm
Copy link
Member Author

Ping for a review here, please.

rust-lang/std-dev-guide#32 is open to add good guidance there, so it'd be nice to help it be found.

Comment on lines 201 to 204
[the stabilization chapter of the std dev guide]: https://std-dev-guide.rust-lang.org/feature-lifecycle/stabilization.html
[the `src/version` file in `master`]: https://github.com/rust-lang/rust/blob/master/src/version
[the version schedule on the Forge]: https://forge.rust-lang.org/#current-release-versions
[the Friday before]: https://forge.rust-lang.org/release/process.html
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These link reference names (e.g., the stabilization chapter of the std dev guide) are long and prone to breaking if wording is changed. Could you change them to be pithier?

E.g.: std-guide-stabilization, src-version, release-process.

(You'll have to add manual [...] link references to the text too.)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good idea. I've added pithy names to these, and added the (...) link references.

(The [...] was a typo, right? My syntax highlighter thinks this is right.)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it should be [...]. For example, [look at this](src-version) will link to src-version as if it is a URL. On the other hand, [look at this][src-version] will use the URL value of the definition [src-version]: https://example.com as the link.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh! I see; thank you. Fixed.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And I checked the rendered https://github.com/rust-lang/rustc-dev-guide/blob/library-stabilization/src/stabilization_guide.md this time to confirm, which I should have done last time but didn't think of.

scottmcm and others added 2 commits March 28, 2022 22:38
Also update the "which version" discussion with more details.
Copy link
Member

@JohnTitor JohnTitor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks!

@JohnTitor JohnTitor merged commit c190ae3 into master Apr 14, 2022
Dylan-DPC added a commit to Dylan-DPC/rust that referenced this pull request Apr 21, 2022
Update books

## book

3 commits in 765318b844569a642ceef7bf1adab9639cbf6af3..de0dbffc5812fd885700874e8d258dd334733ac4
2022-04-12 21:14:47 -0400 to 2022-04-18 19:29:45 -0400
- Remove duplicate text
- Add missing punctuation mark in ch16-01
- Update main.rs

## rust-by-example

1 commits in c2a98d9fc5d29c481d42052fbeccfde15ed03116..44a80e8d8bfc5881c9bd69a2cb3a570776ee4181
2022-04-08 06:44:18 -0300 to 2022-04-19 07:46:28 -0300
- Use rust 2018 module file hierarchy (rust-lang/rust-by-example#1532)

## rustc-dev-guide

6 commits in eeb5a83c15b6ae60df3e4f19207376b22c6fbc4c..043e60f4f191651e9f8bf52fa32df14defbb23d9
2022-04-11 23:29:48 +0900 to 2022-04-20 18:57:49 +0900
- Fix a small typo (rust-lang/rustc-dev-guide#1343)
- Extend debugging llvm section (rust-lang/rustc-dev-guide#1290)
- Send people doing *library* stabilizations over to the std-dev-guide (rust-lang/rustc-dev-guide#1317)
- Fix typo serious->series (rust-lang/rustc-dev-guide#1336)
- Minor type fix (rust-lang/rustc-dev-guide#1337)
- sessiondiagnostic: translation (rust-lang/rustc-dev-guide#1333)

## embedded-book

3 commits in a6de8b6e3ea5d4f0de8b7b9a7e5c1405dc2c2ddb..f7cefbb995eec8c6148f213235e9e2e03268e775
2022-03-17 21:21:39 +0000 to 2022-04-20 10:38:51 +0000
- Fix use of unaligned references in example  (rust-embedded/book#317)
- Correct C interop declarations  (rust-embedded/book#315)
- Update index.md  (rust-embedded/book#316)
@JohnTitor JohnTitor deleted the library-stabilization branch September 5, 2022 10:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-review Status: this PR is waiting for a reviewer to verify its content
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants