Skip to content

Commit

Permalink
Pin sentry version (#1020)
Browse files Browse the repository at this point in the history
Co-authored-by: Manoel Aranda Neto <[email protected]>
Co-authored-by: Manoel Aranda Neto <[email protected]>
  • Loading branch information
3 people authored Sep 28, 2022
1 parent 5f74875 commit f92ec54
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Fixes

- Align span spec for serialize ops ([#1024](https://github.com/getsentry/sentry-dart/pull/1024))
- Pin sentry version ([#1020](https://github.com/getsentry/sentry-dart/pull/1020))

### Features

Expand Down
2 changes: 1 addition & 1 deletion dio/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ environment:

dependencies:
dio: ^4.0.0
sentry: ^6.11.0
sentry: 6.11.0

dev_dependencies:
meta: ^1.3.0
Expand Down
2 changes: 1 addition & 1 deletion flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies:
sdk: flutter
flutter_web_plugins:
sdk: flutter
sentry: ^6.11.0
sentry: 6.11.0
package_info_plus: ^1.0.0
meta: ^1.3.0

Expand Down
2 changes: 1 addition & 1 deletion logging/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ environment:

dependencies:
logging: ^1.0.0
sentry: ^6.11.0
sentry: 6.11.0

dev_dependencies:
lints: ^2.0.0
Expand Down
2 changes: 1 addition & 1 deletion scripts/bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ for pkg in {dart,flutter,logging,dio}; do
# Bump version in pubspec.yaml
perl -pi -e "s/^version: .*/version: $NEW_VERSION/" $pkg/pubspec.yaml
# Bump sentry dependency version in pubspec.yaml
perl -pi -e "s/sentry: \^.*/sentry: \^$NEW_VERSION/" $pkg/pubspec.yaml
perl -pi -e "s/sentry: .*/sentry: $NEW_VERSION/" $pkg/pubspec.yaml
done

# Bump version in version.dart
Expand Down

0 comments on commit f92ec54

Please sign in to comment.