diff --git a/CHANGELOG.md b/CHANGELOG.md index 45f48e624c..fdac5169ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # package:sentry changelog +## 2.0.1 + +- Invert stack frames to be compatible with Sentry's default culprit detection. + ## 2.0.0 - Fixed deprecation warnings for Dart 2 diff --git a/lib/src/version.dart b/lib/src/version.dart index 1cd67219db..bd162799a0 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -9,7 +9,7 @@ library version; /// The SDK version reported to Sentry.io in the submitted events. -const String sdkVersion = '2.0.0'; +const String sdkVersion = '2.0.1'; /// The SDK name reported to Sentry.io in the submitted events. const String sdkName = 'dart'; diff --git a/pubspec.yaml b/pubspec.yaml index fb88edc5a7..f756b5fe80 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: sentry -version: 2.0.0 +version: 2.0.1 description: A pure Dart Sentry.io client. author: Flutter Authors homepage: https://github.com/flutter/sentry