Skip to content

Commit a4b92d8

Browse files
committed
chore: 5.0.0
1 parent d82f4bd commit a4b92d8

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Unreleased
1+
# 5.0.0
22

3-
* Fix: event.origin and event.environment tags have wrong value for iOS (#365)
3+
* Sound null safety
4+
* Fix: event.origin and event.environment tags have wrong value for iOS (#365) and (#369)
45
* Fix: Fix deprecated `registrar.messenger` call in `SentryFlutterWeb` (#364)
56
* Fix: Enable breadcrumb recording mechanism based on platform (#366)
67
* Feat: Send default PII options (#360)
78
* Bump: sentry-cocoa to v6.2.1 (#360)
89
* Feat: Migration from `package_info` to `package_info_plus` plugin (#370)
9-
* Fix: missing event.origin and event.environment tags for non-native events on iOS (#369)
1010
* Fix: Set `SentryOptions.debug` in `sentry` (#376)
1111
* Fix: Read all environment variables in `sentry` (#375)
1212

dart/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ library version;
1111
import 'utils.dart';
1212

1313
/// The SDK version reported to Sentry.io in the submitted events.
14-
const String sdkVersion = '4.1.0-nullsafety.2';
14+
const String sdkVersion = '5.0.0';
1515

1616
String get sdkName => isWeb ? _browserSdkName : _ioSdkName;
1717

dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sentry
2-
version: 4.1.0-nullsafety.2
2+
version: 5.0.0
33
description: >
44
A crash reporting library for Dart that sends crash reports to Sentry.io.
55
This library supports Dart VM and Web. For Flutter consider sentry_flutter instead.

flutter/lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// The SDK version reported to Sentry.io in the submitted events.
2-
const String sdkVersion = '4.1.0-nullsafety.2';
2+
const String sdkVersion = '5.0.0';
33

44
/// The default SDK name reported to Sentry.io in the submitted events.
55
const String sdkName = 'sentry.dart.flutter';

flutter/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sentry_flutter
2-
version: 4.1.0-nullsafety.2
2+
version: 5.0.0
33
description: Sentry SDK for Flutter. This package aims to support different Flutter targets by relying on the many platforms supported by Sentry with native SDKs.
44
homepage: https://docs.sentry.io/platforms/flutter/
55
repository: https://github.com/getsentry/sentry-dart
@@ -13,7 +13,7 @@ dependencies:
1313
sdk: flutter
1414
flutter_web_plugins:
1515
sdk: flutter
16-
sentry: ^4.1.0-nullsafety.1
16+
sentry: ^5.0.0
1717
package_info_plus: ^1.0.0
1818

1919
dev_dependencies:

0 commit comments

Comments
 (0)