Skip to content

Commit

Permalink
docs: add checklist for adding support for new
Browse files Browse the repository at this point in the history
`rustc`` version
  • Loading branch information
godzie44 committed Nov 30, 2024
1 parent 31bdcf5 commit 2e1d74e
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,13 @@ or add support for one of `rustc` versions):
## Useful links

* [GitFlow] -- https://nvie.com/posts/a-successful-git-branching-model/

## Adding support for new compiler version, checklist

- [ ] add a new rustc version into `src/version.rs`
- [ ] update `.github/workflows/ci.yml` by adding a new version for integration and functional tests
- [ ] make sure the tests are not broken (in github ci too), correct test or sources if necessary
- [ ] fix `cargo fmt` and `cargo clippy` if needed
- [ ] add information about new version into `README.md` and `CHANGELOG.md`
- [ ] merge branch into master, rebase develop branch too
- [ ] create a new release from master branch

0 comments on commit 2e1d74e

Please sign in to comment.