rust/PUBLISH.md

15 lines
438 B
Markdown
Raw Normal View History

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