]> git.lizzy.rs Git - rust.git/blob - PUBLISH.md
Merge pull request #2911 from phansch/add_toolchain_file
[rust.git] / PUBLISH.md
1 Steps to publish a new Clippy version
2
3 - Bump `package.version` in `./Cargo.toml` (no need to manually bump `dependencies.clippy_lints.version`).
4 - Write a changelog entry.
5 - If a nightly update is needed, update `min_version.txt` using `rustc -vV > min_version.txt`
6 - Run `./pre_publish.sh`
7 - Review and commit all changed files
8 - `git push`
9 - Wait for Travis's approval.
10 - Merge.
11 - `cargo publish` in `./clippy_lints`.
12 - `cargo publish` in the root directory.
13 - `git pull`.
14 - `git tag -s v0.0.X -m "v0.0.X"`.
15 - `git push --tags`.