1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-04 10:56:08 +02:00
BLAKE3/tools/release.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
722 B
Markdown
Raw Permalink Normal View History

2022-01-25 17:47:49 +01:00
# Release checklist
- Make sure `cargo outdated -R` is clean in the root and in b3sum/.
- Bump the version in the root Cargo.toml.
- Bump the version in b3sum/Cargo.toml.
- Delete b3sum/Cargo.lock and recreate it with `cargo build` or similar.
- Update the `-h` output in b3sum/README.md if it's changed.
2022-01-25 17:47:49 +01:00
- Bump `BLAKE3_VERSION_STRING` in c/blake3.h.
2023-06-17 22:22:26 +02:00
- Bump `VERSION` in c/CMakeLists.txt.
2022-01-25 17:47:49 +01:00
- Make a version bump commit with change notes.
- `git push` and make sure CI is green.
- `git tag` the version bump commit with the new version number.
- `git push --tags`
- `cargo publish` in the root.
- `cargo publish --dry-run` in b3sum/ and make sure it fetches the just-published library version.
- `cargo publish` in b3sum/.