Revision 5fa6faa707c4eedc955a4f0562195703224a63fa authored by Thomas Letan on 14 August 2023, 09:49:56 UTC, committed by Thomas Letan on 14 August 2023, 09:55:15 UTC
Tztop was added at a time where the protocol couldn’t be loaded in utop.
This is no longer the case, and as a consequence, we can safely retire
tztop.
1 parent 5745a2e
Raw File
RELEASE.md
# Releasing the SDK

There may be frequent updates to the Kernel SDK. To ensure updates/fixes get to users quickly, the SDK should be re-released
when appropriate (for example once-per-week).

Rust encourages the use of [semver](https://semver.org/). While we have a bit more leeway while the SDK remains pre-1.0, we
should be mindful that the SDK is being used by external developers already.

## Checklist

- [ ] Changes are documented in [./CHANGES.rst]
- [ ] `SDK_VERSION` is updated in [./Makefile]
- [ ] All versions bumped in the crates' `Cargo.toml`s.
- [ ] once version update is merged, manually trigger the `publish_kernel_sdk` job on master.
back to top