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

Establish toolchain and language versioning #4105

Merged
merged 7 commits into from
Jul 14, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update docs/project/versioning.md
Co-authored-by: Richard Smith <[email protected]>
  • Loading branch information
chandlerc and zygoloid committed Jul 14, 2024
commit 9a38d3e9b3045bbecb31cebdadc1e29de3d8096e
12 changes: 7 additions & 5 deletions docs/project/versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 37,13 @@ tools released by the main Carbon project.
The scheme conforms to and is closely based on Semantic Versioning (SemVer):
zygoloid marked this conversation as resolved.
Show resolved Hide resolved

- Carbon versions: `MAJOR.MINOR.PATCH`
- `MAJOR` increments on backwards incompatible changes, including a
deprecation that might trigger a build-breaking warning.
- `MINOR` increments only expected during early development with a major
version of `0`.
- `PATCH` increments represent bug fixes only.
- Releases with backwards incompatible changes, including a
deprecation that might trigger a build-breaking warning,
increment `MAJOR` after reaching the `1.0` milestone, and
increment `MINOR` before then.
- Releases with only backwards compatible changes are not
expected to happen.
chandlerc marked this conversation as resolved.
Show resolved Hide resolved
- Releases containing only bug fixes increment `PATCH`.
- Pre-release suffixes:
- `MAJOR.MINOR.PATCH-rc.N`: The N-th potentially viable candidate for a
release.
Expand Down
Loading