6.8 KiB
| name | about | title | labels | assignees |
|---|---|---|---|---|
| Release Checklist Template | Checklist of versioning to create a taggable commit for Zebra |
Versioning
Which Crates to Increment
To check if any of the top-level crates need version increments, go to the zebra GitHub code page: https://github.com/ZcashFoundation/zebra and use the last modified dates of each crate. Alternatively you can use the github compare tool and check the main branch against the last tag (Example). git diff --stat <previous-release-tag> origin/main is also useful to see what's changed.
- Increment the crates that have new commits since the last version update
- Increment any crates that depend on crates that have changed
- Keep a list of the crates that haven't been incremented, to include in the PR
- Use the
zebradcrate version in thezebra-networkuser agent string (currently the constantUSER_AGENTinzebra-network/src/constants.rs) - Use the latest git tag in
README.md - Use the latest git tag in
book/src/user/install.md
How to Increment Versions
Zebra follows semantic versioning.
Semantic versions look like: MAJOR.MINOR.PATCH[-TAG.PRE-RELEASE]
Pre-Release Crates
Pre-Release versions have a TAG like "alpha" or "beta". For example: 1.0.0-alpha.0
- Increment the
PRE-RELEASEversion for the crate.
Optionally, if a MINOR feature pre-release breaks MAJOR API compatibility:
- Increment the
MAJORversion, and reset all the other versions to zero
Unstable Crates
Unstable versions have a MAJOR version of zero. For example: 0.1.0
- Follow stable crate versioning, but increment the
MINORversion for breaking changes
Stable Crates
For example: 1.0.0
Increment the first version component in this list, and reset the other components to zero:
- MAJOR versions for breaking public API changes and removals
- check for types from dependencies that appear in the public API
- MINOR versions for new features
- PATCH versions for bug fixes
- includes dependency updates that don't impact the public API
Version Locations
Once you know which versions you want to increment, you can find them in the:
- zebra*
Cargo.tomls - tower-*
Cargo.tomls zebra-networkprotocol user agent: https://github.com/ZcashFoundation/zebra/blob/main/zebra-network/src/constants.rsREADME.mdbook/src/user/install.mdCargo.lock: automatically generated bycargo build
Version Tooling
You can use fastmod to interactively find and replace versions.
For example, you can do something like:
fastmod --extensions rs,toml,md --fixed-strings '1.0.0-alpha.12' '1.0.0-alpha.13'
fastmod --extensions rs,toml,md --fixed-strings '0.2.9' '0.2.10' tower-batch
fastmod --extensions rs,toml,md --fixed-strings '0.2.8' '0.2.9' tower-fallback
Reviewing Version Bumps
Check for missed changes by going to:
https://github.com/ZcashFoundation/zebra/tree/<commit-hash>/
Where <commit-hash> is the hash of the last commit in the version bump PR.
If any Zebra or Tower crates have commit messages that are not a version bump, we have missed an update.
Also check for crates that depend on crates that have changed. They should get a version bump as well.
Initial Testing
- After any changes, test that the
cargo installcommand in works. Use e.g.cargo install --locked --path zebrad.
README
As we resolve various outstanding known issues and implement new functionality with each release, we should double check the README for any necessary updates.
We should check and update if necessary:
- The "Beta Release" section
- The "Known Issues" section
to ensure that any items that are resolved in the latest release are no longer listed in the README.
Change Log
Important: Any merge into main deletes any edits to the draft changelog. Once you are ready to tag a release, copy the draft changelog into CHANGELOG.md.
We follow the Keep a Changelog format.
We use the Release Drafter workflow to automatically create a draft changelog.
To create the final change log:
- Copy the draft changelog into
CHANGELOG.md - Delete any trivial changes. Keep the list of those, to include in the PR
- Combine duplicate changes
- Edit change descriptions so they are consistent, and make sense to non-developers
- Check the category for each change
- prefer the "Fix" category if you're not sure
Change Categories
From "Keep a Changelog":
Addedfor new features.Changedfor changes in existing functionality.Deprecatedfor soon-to-be removed features.Removedfor now removed features.Fixedfor any bug fixes.Securityin case of vulnerabilities.
Create the release PR
After you have the version increments and the updated changelog,
- Push the version increments and the updated changelog into a branch
(name suggestion, example:
v1.0.0-alpha.0-release) - Create a release PR by adding
&template=release-checklist.mdto the comparing url (Example). - Add the list of deleted changelog entries as a comment to make reviewing easier. - Also add the list of not-bumped crates as a comment (can use the same comment as the previous one). - While the PR is being reviewed, keep track of any PRs that have been merged
since you created the PR to update
CHANGELOG.mdand push any updates if necessary - Once the release PR has been approved and merged, create a new release using the draft release as a base, by clicking the Edit icon in the draft release.
- Set the release title to
Zebrafollowed by the version tag, for example:Zebra 1.0.0-alpha.0 - Copy the final changelog of this release to the release description
(starting just after the title
## [Zebra ...) - Set the tag name to the version tag, for example:
v1.0.0-alpha.0 - Set the release to target the
mainbranch - Mark the release as 'pre-release' (until we are no longer alpha/beta)
- Publish the release
Final Testing
- After tagging the release, test that the exact
cargo installcommand inREADME.mdworks (--gitbehaves a bit differently to--path)
If the build fails after tagging:
- fix the build
- check if the fixes changed any extra crates, and do the required version increments
- update
README.mdwith a new git tag - update
CHANGELOG.mdwith details about the fix - tag a new release