Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
- [Mastering @rustbot](./rustbot.md)
- [Walkthrough: a typical contribution](./walkthrough.md)
- [Implementing new language features](./implementing_new_features.md)
- [Stability guarantees](./stability-guarantees.md)
- [Stability attributes](./stability.md)
- [Stabilizing language features](./stabilization_guide.md)
- [Stabilization report template](./stabilization_report_template.md)
Expand Down
26 changes: 26 additions & 0 deletions src/stability-guarantees.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Stability guarantees

This page gives an overview of our stability guarantees.

## RFCs

* [RFC 1105 api evolution](https://github.com/rust-lang/rfcs/blob/master/text/1105-api-evolution.md)
* [RFC 1122 language semver](https://github.com/rust-lang/rfcs/blob/master/text/1122-language-semver.md)

## Blog posts

* [Stability as a Deliverable](https://blog.rust-lang.org/2014/10/30/Stability/)

## rustc-dev-guide links

* [Stabilizing library features](./stability.md)
* [Stabilizing language features](./stabilization_guide.md)
* [What qualifies as a bug fix?](./bug-fix-procedure.md#what-qualifies-as-a-bug-fix)

## Exemptions

Even if some of our infrastructure can be used by others, it is still considered
internal and comes without stability guarantees. This is a non-exhaustive list
of components without stability guarantees:

* The CLIs and environment variables used by `remote-test-client` / `remote-test-server`
Loading