Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement pub recommendations #50

Merged
merged 1 commit into from
Dec 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# package:sentry changelog

## 3.0.0+1

- `pubspec.yaml` and example code clean-up.

## 3.0.0

- Support Web
- Support Web
- `SentryClient` from `package:sentry/sentry.dart` with conditional import
- `SentryBrowserClient` for web from `package:sentry/browser_client.dart`
- `SentryIOClient` for VM and Flutter from `package:sentry/io_client.dart`
Expand Down
12 changes: 12 additions & 0 deletions example/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# `package:sentry` example

The example in this directory throws an error and sends it to Sentry.io. Use it
as a source of example code, or to smoke-test your Sentry.io configuration.

To use the example, create a Sentry.io account and get a DSN for your project.
Then run the following command, replacing "{DSN}" with the one you got from
Sentry.io:

```
dart example/main.dart {DSN}
```
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/src/version.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
library version;

/// The SDK version reported to Sentry.io in the submitted events.
const String sdkVersion = '3.0.0';
const String sdkVersion = '3.0.0+1';

/// The SDK name reported to Sentry.io in the submitted events.
const String sdkName = 'dart';
Expand Down
7 changes: 4 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: sentry
version: 3.0.0
description: A pure Dart Sentry.io client.
author: Flutter Authors <flutter-dev@googlegroups.com>
version: 3.0.0+1
description: >
A crash reporting library for for Dart that sends crash reports to Sentry.io.
This library supports Dart VM, and Flutter for mobile, web, and desktop.
homepage: https://github.com/flutter/sentry

environment:
Expand Down