Skip to content

Commit

Permalink
Merge pull request #123 from bugsnag/releases/v2.0.1
Browse files Browse the repository at this point in the history
v2.0.1
  • Loading branch information
lemnik committed May 25, 2022
2 parents b58b230 + 802ed6e commit 086df8b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2.0.1 (2022-05-25)

- Fixed documentation links in README.md

## 2.0.0 (2022-05-25)

First official Bugsnag release.
Expand Down
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,16 @@
[![Documentation](https://img.shields.io/badge/documentation-latest-blue.svg)](https://docs.bugsnag.com/platforms/flutter/)
[![Build status](https://badge.buildkite.com/e5d6c82f7202bbfe7114be8b8cb245b447a29470cd9320658b.svg)](https://buildkite.com/bugsnag/bugsnag-flutter)

Get comprehensive [Flutter error reports](https://www.bugsnag.com/platforms/flutter/) to quickly
debug errors.

Bugsnag's [Flutter error reporting](https://www.bugsnag.com/platforms/flutter/)
library automatically detects crashes in your Flutter apps, collecting diagnostic information and
The [Bugsnag](https://www.bugsnag.com) error reporting library automatically detects Dart errors and
native crashes in Flutter apps running on iOS and Android, collecting diagnostic information and
immediately notifying your development team, helping you to understand and resolve issues as fast as
possible.
possible. Learn more about
[Flutter error monitoring with Bugsnag](https://docs.bugsnag.com/platforms/flutter/).

## Features

* Automatically report unhandled errors and crashes
* Report [handled errors](https://docs.bugsnag.com/platforms/flutter/#reporting-handled-exceptions)
* Report [handled errors](https://docs.bugsnag.com/platforms/flutter/#reporting-handled-errors)
* [Log breadcrumbs](https://docs.bugsnag.com/platforms/flutter/#logging-breadcrumbs) which are
attached to crash reports and add insight to users' actions
* [Attach user information](https://docs.bugsnag.com/platforms/flutter/#identifying-users) to
Expand All @@ -26,7 +24,7 @@ possible.
1. Complete the instructions in the [integration guide](https://docs.bugsnag.com/platforms/flutter/)
to report unhandled errors thrown from your app
1. Report handled errors
using [`bugsnag.notify`](https://docs.bugsnag.com/platforms/flutter/reporting-handled-exceptions/)
using [`bugsnag.notify`](https://docs.bugsnag.com/platforms/flutter/reporting-handled-errors/)
1. Customize your integration using
the [configuration options](https://docs.bugsnag.com/platforms/flutter/configuration-options/)

Expand Down
2 changes: 1 addition & 1 deletion packages/bugsnag_flutter/lib/src/client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import 'model.dart';
final _notifier = {
'name': 'Flutter Bugsnag Notifier',
'url': 'https://github.com/bugsnag/bugsnag-flutter',
'version': '2.0.0'
'version': '2.0.1'
};

abstract class Client {
Expand Down
2 changes: 1 addition & 1 deletion packages/bugsnag_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: bugsnag_flutter
description: Bugsnag crash monitoring and reporting tool for Flutter apps
version: 2.0.0
version: 2.0.1
homepage: https://www.bugsnag.com/
documentation: https://docs.bugsnag.com/platforms/flutter/
repository: https://github.com/bugsnag/bugsnag-flutter
Expand Down

0 comments on commit 086df8b

Please sign in to comment.