Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions docs/docs/developers/guides/release_checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,7 @@ Make a pull request with the following changes:
[crates.io](https://crates.io/).
- Make sure to run `cargo publish --dry-run` and include the `Cargo.lock` crate
version change in the release.
- Make sure to update RPC specs by running
```
cargo test --lib -- rpc::tests::openrpc
cargo insta review
```
- Make sure to update RPC specs by running `mise insta`
- The Pull Request must have the `Release` label.

## Release on GitHub
Expand Down
8 changes: 8 additions & 0 deletions mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,14 @@ fi
tail -n +2 .config/forest.dic | diff - "$TMPFILE"
'''

[tasks.insta]
description = "Update insta snapshots."
run = '''
cargo test --lib -- rpc::tests::openrpc
cargo insta accept
Comment thread
LesnyRumcajs marked this conversation as resolved.
Comment thread
LesnyRumcajs marked this conversation as resolved.
'''
tools.cargo-insta = "1.46"

[tools]
cargo-binstall = "1.17"
go = "1.26"
Expand Down
Loading