Skip to content

Commit 588e77a

Browse files
bchaliosroypat
authored andcommitted
chore: don't update dependencies when with new vX.Y.0-dev version
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]>
1 parent a4cced0 commit 588e77a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/bump-version.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ $0 <version>
1919
2020
Bump Firecracker release version:
2121
1. Updates Cargo.toml / Cargo.lock
22-
2. Runs 'cargo update'
2322
EOF
2423
exit 1
2524
fi
@@ -60,5 +59,5 @@ done
6059
# NOTE: This will break if it finds paths with spaces in them
6160
find . -path ./build -prune -o -name Cargo.lock -print |while read -r cargo_lock; do
6261
say "Updating $cargo_lock ..."
63-
(cd "$(dirname "$cargo_lock")"; cargo check; cargo update)
62+
(cd "$(dirname "$cargo_lock")"; cargo check)
6463
done

0 commit comments

Comments
 (0)