mirror of
https://github.com/GothenburgBitFactory/taskchampion-sync-server.git
synced 2025-06-26 10:54:29 +02:00
21 lines
1.2 KiB
Markdown
21 lines
1.2 KiB
Markdown
# Release process
|
|
|
|
1. Run `git pull upstream main`
|
|
1. Run `cargo test`
|
|
1. Run `cargo clean && cargo clippy`
|
|
1. Remove the `-pre` from `version` in all `*/Cargo.toml`, and from the `version = ..` in any references between packages.
|
|
1. Update the link to `docker-compose.yml` in `README.md` to refer to the new version.
|
|
1. Update the docker image in `docker-compose.yml` to refer to the new version.
|
|
1. Run `cargo semver-checks` (https://crates.io/crates/cargo-semver-checks)
|
|
1. Run `cargo build --release`
|
|
1. Commit the changes (Cargo.lock will change too) with comment `vX.Y.Z`.
|
|
1. Run `git tag vX.Y.Z`
|
|
1. Run `git push upstream`
|
|
1. Run `git push upstream --tag vX.Y.Z`
|
|
1. Run `cargo publish -p taskchampion-sync-server-core`
|
|
1. Run `cargo publish -p taskchampion-sync-server-storage-sqlite` (and add any other new published packages here)
|
|
1. Bump the patch version in `*/Cargo.toml` and add the `-pre` suffix. This allows `cargo-semver-checks` to check for changes not accounted for in the version delta.
|
|
1. Run `cargo build --release` again to update `Cargo.lock`
|
|
1. Commit that change with comment "Bump to -pre version".
|
|
1. Run `git push upstream`
|
|
1. Navigate to the tag in the GitHub releases UI and create a release with general comments about the changes in the release
|