File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
docs/devbook/upgrade-repository-dependencies Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ git commit -am "chore: update Rust dependencies"
13
13
14
14
# Upgrade Rust outdated dependencies
15
15
cargo upgrade " ${CARGO_UPGRADE_OPTIONS} " --verbose
16
+ cargo update
16
17
# Let the CI run the tests at the end of the script
17
18
# cargo test --all-features
18
19
git commit -am " chore: upgrade Rust dependencies"
@@ -21,6 +22,11 @@ git commit -am "chore: upgrade Rust dependencies"
21
22
cargo set-version --bump patch
22
23
git commit -am " chore: bump crates versions"
23
24
25
+ # Build mithril-client wasm (to have latest version used in the explorer)
26
+ pushd mithril-client-wasm || exit
27
+ make build
28
+ popd || exit
29
+
24
30
# Upgrade the documentation website dependencies
25
31
pushd docs/website || exit
26
32
make upgrade
You can’t perform that action at this time.
0 commit comments