rust/PUBLISH.md

21 lines
616 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.
- `cargo publish` in `./clippy_clints`.
- `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`.
- `git clone git@github.com:Manishearth/rust-clippy.wiki.git ../rust-clippy.wiki`
2017-04-07 16:42:08 +02:00
- `./util/update_wiki.py`
- `cd ../rust-clippy.wiki`
2017-04-07 16:42:08 +02:00
- `git add *`
- `git commit`
- `git push`