mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
488 B
488 B
Steps to publish a new clippy version
cargo test
.
- Bump
package.version
in./Cargo.toml
(no need to manually bumpdependencies.clippy_lints.version
). - Run
./util/update_lints.py
. - Write a changelog entry.
- Commit
./Cargo.toml
,./clippy_lints/Cargo.toml
and./CHANGELOG.md
. git push
- Wait for Travis's approval.
- Merge.
cargo publish
in./clippy_clints
.cargo publish
in the root directory.git pull
.git tag -s v0.0.X
.git push --tags
.