Skip to content

Commit

Permalink
chore: don't update dependencies when with new vX.Y.0-dev version
Browse files Browse the repository at this point in the history
We want to do that before creating the release branch so that we can fix
issues with new dependencies ahead of the release.

Signed-off-by: Babis Chalios <[email protected]>
  • Loading branch information
bchalios authored and roypat committed Oct 16, 2024
1 parent a4cced0 commit 588e77a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ $0 <version>
Bump Firecracker release version:
1. Updates Cargo.toml / Cargo.lock
2. Runs 'cargo update'
EOF
exit 1
fi
Expand Down Expand Up @@ -60,5 +59,5 @@ done
# NOTE: This will break if it finds paths with spaces in them
find . -path ./build -prune -o -name Cargo.lock -print |while read -r cargo_lock; do
say "Updating $cargo_lock ..."
(cd "$(dirname "$cargo_lock")"; cargo check; cargo update)
(cd "$(dirname "$cargo_lock")"; cargo check)
done

0 comments on commit 588e77a

Please sign in to comment.