-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Update the release cycle #10288
Merged
Merged
Update the release cycle #10288
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 |
---|---|---|
@@ -1,12 +1,15 @@ | ||
# Nix Release Notes | ||
|
||
Nix has a release cycle of roughly 6 weeks. | ||
Notable changes and additions are announced in the release notes for each version. | ||
The Nix release cycle is calendar-based as follows: | ||
|
||
- A new minor version (`XX.YY+1.0`) is published every month and supported for two months; | ||
- A new major version (`XX+1.1.0`) is published twice a year, in April and October, and supported for eight months. | ||
|
||
Bugfixes can be backported on request to previous Nix releases. | ||
We typically backport only as far back as the Nix version used in the latest NixOS release, which is announced in the [NixOS release notes](https://nixos.org/manual/nixos/stable/release-notes.html#ch-release-notes). | ||
The rationale behind that cycle is that | ||
- Minor versions stay close to master and bring early access to new features for the user who need them; | ||
- Major versions are aligned with the NixOS releases (released one month before NixOS and supported for as long at it). | ||
|
||
Backports never skip releases. | ||
If a feature is backported to version `x.y`, it must also be available in version `x.(y+1)`. | ||
This ensures that upgrading from an older version with backports is still safe and no backported functionality will go missing. | ||
Bugfixes and security issues are backported to every supported version. | ||
Patch releases are published as needed. | ||
|
||
Notable changes and additions are announced in the release notes for each version. |
Oops, something went wrong.
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.
I don't understand what this means. What are
XX
andYY
? Year and month? And what do the+1.0
and+1.1.0
denote?