Skip to content

Commit 8e4eeb3

Browse files
author
getsentry-bot
committed
Merge branch 'release/7.16.0'
2 parents 4c78360 + 147ef50 commit 8e4eeb3

20 files changed

+28
-28
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 7.16.0
44

55
### Features
66

dart/lib/src/version.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
library version;
1010

1111
/// The SDK version reported to Sentry.io in the submitted events.
12-
const String sdkVersion = '7.15.0';
12+
const String sdkVersion = '7.16.0';
1313

1414
String sdkName(bool isWeb) => isWeb ? _browserSdkName : _ioSdkName;
1515

dart/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sentry
2-
version: 7.15.0
2+
version: 7.16.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.

dio/lib/src/version.dart

+1-1
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 = '7.15.0';
2+
const String sdkVersion = '7.16.0';
33

44
/// The package name reported to Sentry.io in the submitted events.
55
const String packageName = 'pub:sentry_dio';

dio/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_dio
22
description: An integration which adds support for performance tracing for the Dio package.
3-
version: 7.15.0
3+
version: 7.16.0
44
homepage: https://docs.sentry.io/platforms/dart/
55
repository: https://github.com/getsentry/sentry-dart
66
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -11,7 +11,7 @@ environment:
1111

1212
dependencies:
1313
dio: ^5.0.0
14-
sentry: 7.15.0
14+
sentry: 7.16.0
1515

1616
dev_dependencies:
1717
meta: ^1.3.0

drift/lib/src/version.dart

+1-1
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 = '7.15.0';
2+
const String sdkVersion = '7.16.0';
33

44
/// The package name reported to Sentry.io in the submitted events.
55
const String packageName = 'pub:sentry_drift';

drift/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_drift
22
description: An integration which adds support for performance tracing for the drift package.
3-
version: 7.15.0
3+
version: 7.16.0
44
homepage: https://docs.sentry.io/platforms/flutter/
55
repository: https://github.com/getsentry/sentry-dart
66
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -10,7 +10,7 @@ environment:
1010
flutter: '>=3.3.0'
1111

1212
dependencies:
13-
sentry: 7.15.0
13+
sentry: 7.16.0
1414
meta: ^1.3.0
1515
drift: ^2.13.0
1616

file/lib/src/version.dart

+1-1
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 = '7.15.0';
2+
const String sdkVersion = '7.16.0';
33

44
/// The package name reported to Sentry.io in the submitted events.
55
const String packageName = 'pub:sentry_file';

file/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_file
22
description: An integration which adds support for performance tracing for dart.io.File.
3-
version: 7.15.0
3+
version: 7.16.0
44
homepage: https://docs.sentry.io/platforms/dart/
55
repository: https://github.com/getsentry/sentry-dart
66
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -10,7 +10,7 @@ environment:
1010
sdk: '>=2.19.0 <4.0.0'
1111

1212
dependencies:
13-
sentry: 7.15.0
13+
sentry: 7.16.0
1414
meta: ^1.3.0
1515

1616
dev_dependencies:

flutter/example/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_flutter_example
22
description: Demonstrates how to use the sentry_flutter plugin.
3-
version: 7.15.0
3+
version: 7.16.0
44

55
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
66

flutter/lib/src/version.dart

+1-1
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 = '7.15.0';
2+
const String sdkVersion = '7.16.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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sentry_flutter
2-
version: 7.15.0
2+
version: 7.16.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
@@ -15,7 +15,7 @@ dependencies:
1515
sdk: flutter
1616
flutter_web_plugins:
1717
sdk: flutter
18-
sentry: 7.15.0
18+
sentry: 7.16.0
1919
package_info_plus: '>=1.0.0 <=5.0.1'
2020
meta: ^1.3.0
2121
ffi: ^2.0.0

hive/lib/src/version.dart

+1-1
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 = '7.15.0';
2+
const String sdkVersion = '7.16.0';
33

44
/// The package name reported to Sentry.io in the submitted events.
55
const String packageName = 'pub:sentry_hive';

hive/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_hive
22
description: An integration which adds support for performance tracing for the hive package.
3-
version: 7.15.0
3+
version: 7.16.0
44
homepage: https://docs.sentry.io/platforms/flutter/
55
repository: https://github.com/getsentry/sentry-dart
66
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -9,7 +9,7 @@ environment:
99
sdk: '>=2.17.0 <4.0.0'
1010

1111
dependencies:
12-
sentry: 7.15.0
12+
sentry: 7.16.0
1313
hive: ^2.2.3
1414
meta: ^1.3.0
1515

isar/lib/src/version.dart

+1-1
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 = '7.15.0';
2+
const String sdkVersion = '7.16.0';
33

44
/// The package name reported to Sentry.io in the submitted events.
55
const String packageName = 'pub:sentry_isar';

isar/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_isar
22
description: An integration which adds support for performance tracing for the isar package.
3-
version: 7.15.0
3+
version: 7.16.0
44
homepage: https://docs.sentry.io/platforms/flutter/
55
repository: https://github.com/getsentry/sentry-dart
66
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -12,7 +12,7 @@ environment:
1212
dependencies:
1313
isar: ^3.1.0
1414
isar_flutter_libs: ^3.1.0 # contains Isar Core
15-
sentry: 7.15.0
15+
sentry: 7.16.0
1616
meta: ^1.3.0
1717
path: ^1.8.3
1818

logging/lib/src/version.dart

+1-1
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 = '7.15.0';
2+
const String sdkVersion = '7.16.0';
33

44
/// The package name reported to Sentry.io in the submitted events.
55
const String packageName = 'pub:sentry_logging';

logging/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_logging
22
description: An integration which adds support for recording log from the logging package.
3-
version: 7.15.0
3+
version: 7.16.0
44
homepage: https://docs.sentry.io/platforms/dart/
55
repository: https://github.com/getsentry/sentry-dart
66
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -11,7 +11,7 @@ environment:
1111

1212
dependencies:
1313
logging: ^1.0.0
14-
sentry: 7.15.0
14+
sentry: 7.16.0
1515

1616
dev_dependencies:
1717
lints: ^3.0.0

sqflite/lib/src/version.dart

+1-1
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 = '7.15.0';
2+
const String sdkVersion = '7.16.0';
33

44
/// The package name reported to Sentry.io in the submitted events.
55
const String packageName = 'pub:sentry_sqflite';

sqflite/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sentry_sqflite
22
description: An integration which adds support for performance tracing for the sqflite package.
3-
version: 7.15.0
3+
version: 7.16.0
44
homepage: https://docs.sentry.io/platforms/flutter/
55
repository: https://github.com/getsentry/sentry-dart
66
issue_tracker: https://github.com/getsentry/sentry-dart/issues
@@ -10,7 +10,7 @@ environment:
1010
flutter: '>=3.3.0' # matching sqflite
1111

1212
dependencies:
13-
sentry: 7.15.0
13+
sentry: 7.16.0
1414
sqflite: ^2.0.0
1515
sqflite_common: ^2.0.0
1616
meta: ^1.3.0

0 commit comments

Comments
 (0)