Skip to content

Commit

Permalink
Release 1.4.2 (#111)
Browse files Browse the repository at this point in the history
* Updated changelog for release 1.4.2

* Bump versions to 1.4.2
  • Loading branch information
matux authored Aug 2, 2023
1 parent 5e5823a commit 4177be3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions rollbar_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 1.4.2

- Updated the hooking mechanism to use `PlatformDispatcher` instead of a custom `Zone` when using Flutter 3.3 or above.
- The old mechanism will be used when using a pre-3.3 Flutter version.
- Not using a custom `Zone` should improve startup performance.

## 1.4.1

- Fixed the SDK not hooking properly to the Flutter framework `onError` callback.
Expand Down
4 changes: 2 additions & 2 deletions rollbar_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rollbar_flutter_example
description: Demonstrates how to use the rollbar_flutter plugin.
version: 1.4.1
version: 1.4.2

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

Expand All @@ -11,7 +11,7 @@ environment:
dependencies:
flutter:
sdk: flutter
rollbar_flutter: ^1.3.0
rollbar_flutter: ^1.4.0
cupertino_icons: ^1.0.0

dependency_overrides:
Expand Down
4 changes: 2 additions & 2 deletions rollbar_flutter/ios/rollbar_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'rollbar_flutter'
s.version = '1.4.1'
s.version = '1.4.2'
s.summary = 'Connect your Flutter applications to Rollbar for error reporting.'
s.description = <<-DESC
Connect your Flutter applications to Rollbar for error reporting.
Expand All @@ -16,7 +16,7 @@ Connect your Flutter applications to Rollbar for error reporting.
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'RollbarNotifier', '~> 3.0.1'
s.dependency 'RollbarNotifier', '~> 3.1.0'
s.static_framework = true
s.platform = :ios, '14.0'

Expand Down
2 changes: 1 addition & 1 deletion rollbar_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rollbar_flutter
description: Connect your Flutter applications to Rollbar for error reporting.
version: 1.4.1
version: 1.4.2
homepage: https://www.rollbar.com
documentation: https://docs.rollbar.com/docs/flutter#flutter
repository: https://github.com/rollbar/rollbar-flutter
Expand Down

0 comments on commit 4177be3

Please sign in to comment.