rust-clippy/PUBLISH.md

15 lines
438 B
Markdown
Raw Normal View History

Steps to publish a new Clippy version
2016-11-08 10:52:38 +00:00
- Bump `package.version` in `./Cargo.toml` (no need to manually bump `dependencies.clippy_lints.version`).
- Write a changelog entry.
2017-02-27 08:49:18 +00:00
- Run `./pre_publish.sh`
- Review and commit all changed files
2016-11-08 10:52:38 +00:00
- `git push`
- Wait for Travis's approval.
- Merge.
2017-09-23 20:36:40 +00:00
- `cargo publish` in `./clippy_lints`.
2016-11-08 10:52:38 +00:00
- `cargo publish` in the root directory.
- `git pull`.
- `git tag -s v0.0.X -m "v0.0.X"`.
2016-11-08 10:52:38 +00:00
- `git push --tags`.