We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a8943f commit 5bbfe4dCopy full SHA for 5bbfe4d
scripts/bump-version.sh
@@ -10,6 +10,5 @@ NEW_VERSION="${2}"
10
echo "Current version: ${OLD_VERSION}"
11
echo "Bumping version: ${NEW_VERSION}"
12
13
-VERSION_RE=${VERSION//\./\\.}
14
-find . -name Cargo.toml -type f -exec sed -i '' -e "1,/^version/ s/^version.*/version = \"${NEW_VERSION}\"/" {} \;
+perl -pi -e "s/^version = \".*\"/version = \"$NEW_VERSION\"/" Cargo.toml
15
cargo update -p sentry
0 commit comments