Skip to content

Commit

Permalink
Add release checklist
Browse files Browse the repository at this point in the history
  • Loading branch information
charypar committed Aug 12, 2024
1 parent 7f0b838 commit ba84eed
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Cutting a release of crux

## Dependencies between crates

The Crux crate depend on one another, and need to be released in the right order

1. `crux_macros`
2. `crux_core`
2. Capability crates (`crux_http crux_kv crux_platform crux_time`)

There are scripts to help with this.

## Steps

The easiest way of releasing is using `release-plz`

1. `release-plz update` - this should move the versions of all the crates according to the changes
to their APIs. Note that this isn't bulletproof, because it doesn't consider all the changes
which are in fact breaking as breaking.

Things it misses: (may not be the complete list):
* changes to crux_macros that generate incompatible code
* changes to capability operation types
2. Optionally - open a PR with the changes to the versions for review
3. use `scripts/cargo_publish.fish` to publish the crates in the right order OR
- publish `crux_macros` if it changed
- publish `crux_core` if it changed
- publish any capability crates that changed
4. tag the commit used for the release with [crate_name]-vX.Y.Z
5. for `crux_core` create a GitHub release with release notes, especially breaking changes

0 comments on commit ba84eed

Please sign in to comment.