Releasing the percas-client crate involves the following steps:
- Change the working directory to the
clientfolder. - Execute
cargo release [LEVEL] -xfor release. The LEVEL is typically one ofpatch,minor, ormajor.
Releasing the percas server and deliver artifacts involves the following steps:
- Head to the Cargo.toml file and bump the version number. The version number should follow the Semantic Versioning specification.
- After that, assuming the new version is
${version}, run the following command to create a new release:
git tag -s -m "release v${version}" v${version}
git push origin v${version}