Skip to content

Commit

Permalink
Merge pull request #78 from koji-1009/2.4.1
Browse files Browse the repository at this point in the history
2.4.1
  • Loading branch information
koji-1009 authored Oct 3, 2021
2 parents ddff3aa + 4d6ccb8 commit 4b9d55b
Show file tree
Hide file tree
Showing 11 changed files with 36 additions and 25 deletions.
4 changes: 4 additions & 0 deletions flutter_auth_ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.4.1

- Add `FlutterAuthUi.signOut()`

## 2.4.0

- firebase_auth `^3.1.0`
Expand Down
8 changes: 4 additions & 4 deletions flutter_auth_ui/example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ PODS:
- FirebaseUI/Phone (12.0.2):
- FirebasePhoneAuthUI (~> 12.0)
- Flutter (1.0.0)
- flutter_auth_ui (2.4.0):
- flutter_auth_ui (2.4.1):
- FirebaseUI/Anonymous (~> 12.0)
- FirebaseUI/Auth (~> 12.0)
- FirebaseUI/Email (~> 12.0)
Expand Down Expand Up @@ -199,8 +199,8 @@ SPEC CHECKSUMS:
FirebaseOAuthUI: 8dc3d0270781133b10b2666d1163cd298501f453
FirebasePhoneAuthUI: d84be4a096ddc19f9aace4a6ebcf80fe334f466b
FirebaseUI: b04b32ead3a6dcd5a50829e14b8f3f6d044d5d62
Flutter: 434fef37c0980e73bb6479ef766c45957d4b510c
flutter_auth_ui: 537dc655865d267bcd8ede85a668927abdd3a5ab
Flutter: 50d75fe2f02b26cc09d224853bb45737f8b3214a
flutter_auth_ui: 4e3a33f1916590de4bd1fc13d052e20baecbc412
GoogleDataTransport: 85fd18ff3019bb85d3f2c551d04c481dedf71fc9
GoogleSignIn: fd381840dbe7c1137aa6dc30849a5c3e070c034a
GoogleUtilities: 8de2a97a17e15b6b98e38e8770e2d129a57c0040
Expand All @@ -211,4 +211,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: 44060a700414ac2ceaba2cf540f4019e6b665587

COCOAPODS: 1.11.0
COCOAPODS: 1.11.2
4 changes: 2 additions & 2 deletions flutter_auth_ui/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ packages:
path: ".."
relative: true
source: path
version: "2.4.0"
version: "2.4.1"
flutter_auth_ui_web:
dependency: transitive
description:
Expand Down Expand Up @@ -150,7 +150,7 @@ packages:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0"
version: "1.7.0"
path:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion flutter_auth_ui/ios/flutter_auth_ui.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'flutter_auth_ui'
s.version = '2.4.0'
s.version = '2.4.1'
s.summary = 'Unofficial firebaseui package for flutter. This library aims to provide support for Android, iOS and the web. Login with Email, Phone, Google account and etc.'
s.description = <<-DESC
A new Flutter plugin.
Expand Down
8 changes: 4 additions & 4 deletions flutter_auth_ui/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.6.1"
version: "2.8.1"
boolean_selector:
dependency: transitive
description:
Expand All @@ -28,7 +28,7 @@ packages:
name: charcode
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.3.1"
clock:
dependency: transitive
description:
Expand Down Expand Up @@ -183,7 +183,7 @@ packages:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0"
version: "1.7.0"
path:
dependency: transitive
description:
Expand Down Expand Up @@ -251,7 +251,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.0"
version: "0.4.2"
typed_data:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion flutter_auth_ui/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_auth_ui
description: Unofficial firebaseui package for flutter. This library aims to provide support for Android, iOS and the web. Login with Email, Phone, Google account and etc.
version: 2.4.0
version: 2.4.1
homepage: https://github.com/koji-1009/flutter_auth_ui

flutter:
Expand Down
4 changes: 4 additions & 0 deletions flutter_auth_ui_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.6

- Add `FlutterAuthUi.signOut()`

## 1.0.5

- Update dependencies
Expand Down
7 changes: 5 additions & 2 deletions flutter_auth_ui_web/example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,11 @@ class MyApp extends StatelessWidget {
},
),
ElevatedButton(
child: const Text("sign out"),
onPressed: FlutterAuthUi.signOut,
onPressed: () async {
await FlutterAuthUi.signOut();
print('Signed out !');
},
child: Text('sign out'),
),
],
),
Expand Down
12 changes: 6 additions & 6 deletions flutter_auth_ui_web/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.6.1"
version: "2.8.1"
boolean_selector:
dependency: transitive
description:
Expand All @@ -28,7 +28,7 @@ packages:
name: charcode
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.3.1"
clock:
dependency: transitive
description:
Expand Down Expand Up @@ -110,14 +110,14 @@ packages:
path: "../../flutter_auth_ui"
relative: true
source: path
version: "2.3.1"
version: "2.4.0"
flutter_auth_ui_web:
dependency: "direct overridden"
description:
path: ".."
relative: true
source: path
version: "1.0.5"
version: "1.0.6"
flutter_plugin_android_lifecycle:
dependency: transitive
description:
Expand Down Expand Up @@ -176,7 +176,7 @@ packages:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0"
version: "1.7.0"
path:
dependency: transitive
description:
Expand Down Expand Up @@ -244,7 +244,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.0"
version: "0.4.2"
typed_data:
dependency: transitive
description:
Expand Down
8 changes: 4 additions & 4 deletions flutter_auth_ui_web/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.6.1"
version: "2.8.1"
boolean_selector:
dependency: transitive
description:
Expand All @@ -28,7 +28,7 @@ packages:
name: charcode
url: "https://pub.dartlang.org"
source: hosted
version: "1.2.0"
version: "1.3.1"
clock:
dependency: transitive
description:
Expand Down Expand Up @@ -120,7 +120,7 @@ packages:
name: meta
url: "https://pub.dartlang.org"
source: hosted
version: "1.3.0"
version: "1.7.0"
path:
dependency: transitive
description:
Expand Down Expand Up @@ -181,7 +181,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.0"
version: "0.4.2"
typed_data:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion flutter_auth_ui_web/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_auth_ui_web
description: Unofficial firebaseui package for flutter. This library aims to provide support for Android, iOS and the web. Login with Email, Phone, Google account and etc.
version: 1.0.5
version: 1.0.6
homepage: https://github.com/koji-1009/flutter_auth_ui

flutter:
Expand Down

0 comments on commit 4b9d55b

Please sign in to comment.