Skip to content

Commit a6337d3

Browse files
committed
fix: Update sentry-actix alongside sentry now
1 parent d5dd1be commit a6337d3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

integrations/sentry-actix/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sentry-actix"
3-
version = "0.5.0"
3+
version = "0.10.0"
44
authors = ["Sentry <[email protected]>"]
55
license = "Apache-2.0"
66
readme = "README.md"

scripts/bump-version.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ NEW_VERSION="${2}"
1010
echo "Current version: ${OLD_VERSION}"
1111
echo "Bumping version: ${NEW_VERSION}"
1212

13-
perl -pi -e "s/^version = \".*\"/version = \"$NEW_VERSION\"/" Cargo.toml
14-
perl -pi -e "s/^version = \".*\"/version = \"$NEW_VERSION\"/" integrations/sentry-actix/Cargo.toml
13+
VERSION_RE=${VERSION//\./\\.}
14+
find . -name Cargo.toml -type f -exec sed -i '' -e "1,/^version/ s/^version.*/version = \"${NEW_VERSION}\"/" {} \;
1515
cargo update -p sentry

0 commit comments

Comments
 (0)