-
Notifications
You must be signed in to change notification settings - Fork 13k
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
TRPL: release channels #25174
Merged
+46
−0
Merged
TRPL: release channels #25174
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
% Release Channels | ||
|
||
The Rust project uses a concept called ‘release channels’ to manage releases. | ||
It’s important to understand this process to choose which version of Rust | ||
your project should use. | ||
|
||
# Overview | ||
|
||
There are three channels for Rust releases: | ||
|
||
* Nightly | ||
* Beta | ||
* Stable | ||
|
||
New nightly releases are created once a day. Every six weeks, the latest | ||
nightly release is promoted to ‘Beta’. At that point, it will only receive | ||
patches to fix serious errors. Six weeks later, the beta is promoted to | ||
‘Stable’, and becomes the next release of `1.x`. | ||
|
||
This process happens in parallel. So every six weeks, on the same day, | ||
nightly goes to beta, beta goes to stable. When `1.x` is released, at | ||
the same time, `1.(x + 1)-beta` is released, and the nightly becomes the | ||
first version of `1.(x + 2)-nightly`. | ||
|
||
# Choosing a version | ||
|
||
Generally speaking, unless you have a specific reason, you should be using the | ||
stable release channel. These releases are intended for a general audience. | ||
|
||
However, depending on your interest in Rust, you may choose to use nightly | ||
instead. The basic tradeoff is this: in the nightly channel, you can use | ||
unstable, new Rust features. However, unstable features are subject to change, | ||
and so any new nightly release may break your code. If you use the stable | ||
release, you cannot use experimental features, but the next release of Rust | ||
will not cause significant issues through breaking changes. | ||
|
||
# Helping the ecosystem through CI | ||
|
||
What about beta? We encourage all Rust users who use the stable release channel | ||
to also test against the beta channel in their continuous integration systems. | ||
This will help alert the team in case there’s an accidental regression. | ||
|
||
Additionally, testing against nightly can catch regressions even sooner, and so | ||
if you don’t mind a third build, we’d appreciate testing against all channels. | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, should library authors configure CI for stable, beta and nightly? (I think so.)