Skip to content

Commit

Permalink
⬆️ Bump dependencies to their latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
aguilaair committed Oct 12, 2020
1 parent e3d7169 commit dbb9a95
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 14 deletions.
4 changes: 3 additions & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import 'dart:async';

import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:wiredash/wiredash.dart';
Expand All @@ -12,7 +14,7 @@ final sentry = SentryClient(
void main() async {
runZonedGuarded(
() => runApp(MyApp()),
(error, stackTrace) {
(error, stackTrace) async {
await sentry.captureException(
exception: error,
stackTrace: stackTrace,
Expand Down
26 changes: 20 additions & 6 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ packages:
name: connectivity
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.9"
version: "0.4.9+3"
connectivity_for_web:
dependency: transitive
description:
Expand Down Expand Up @@ -169,7 +169,7 @@ packages:
name: get
url: "https://pub.dartlang.org"
source: hosted
version: "3.4.2"
version: "3.13.2"
http:
dependency: transitive
description:
Expand Down Expand Up @@ -232,21 +232,35 @@ packages:
name: package_info
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.1"
version: "0.4.3"
path:
dependency: transitive
description:
name: path
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0-nullsafety.1"
path_provider:
dependency: transitive
description:
name: path_provider
url: "https://pub.dartlang.org"
source: hosted
version: "1.6.14"
path_provider_linux:
dependency: transitive
description:
name: path_provider_linux
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.1+2"
path_provider_macos:
dependency: transitive
description:
name: path_provider_macos
url: "https://pub.dartlang.org"
source: hosted
version: "0.0.4+4"
path_provider_platform_interface:
dependency: transitive
description:
Expand Down Expand Up @@ -290,7 +304,7 @@ packages:
source: hosted
version: "3.0.13"
provider:
dependency: "direct main"
dependency: transitive
description:
name: provider
url: "https://pub.dartlang.org"
Expand Down Expand Up @@ -412,7 +426,7 @@ packages:
name: wiredash
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.0"
version: "0.3.0"
xdg_directories:
dependency: transitive
description:
Expand All @@ -436,4 +450,4 @@ packages:
version: "2.2.1"
sdks:
dart: ">=2.10.0-110 <2.11.0"
flutter: ">=1.16.0 <2.0.0"
flutter: ">=1.17.0 <2.0.0"
14 changes: 7 additions & 7 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ environment:
dependencies:
flutter:
sdk: flutter
esptouch_flutter: ^0.2.2
provider: ^4.3.1
connectivity:
location_permissions: ^3.0.0
get: ^3.4.2
esptouch_flutter: ^0.2.4
#provider: ^4.3.1
connectivity: ^0.4.9+3
location_permissions: ^3.0.0+1
get: ^3.13.2
flare_flutter: ^2.0.6
package_info:
wiredash: ^0.1.0
package_info: ^0.4.3
wiredash: ^0.3.0
sentry: ">=3.0.0 <4.0.0"

# The following adds the Cupertino Icons font to your application.
Expand Down

0 comments on commit dbb9a95

Please sign in to comment.