Skip to content

Commit c5ba00e

Browse files
committed
v1.0.1
1 parent 2fd2951 commit c5ba00e

File tree

6 files changed

+22
-18
lines changed

6 files changed

+22
-18
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.0.1] - 2024-06-15
2+
3+
* pubspec.yaml update.
4+
15
## [1.0.0] - 2024-06-10
26

37
* Update README.md

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add the following to your `pubspec.yaml` file:
1616

1717
``` yaml
1818
dependencies:
19-
laravel_notify_fcm: ^1.0.0
19+
laravel_notify_fcm: ^1.0.1
2020
```
2121
2222
or with Dart:

example/pubspec.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ packages:
8585
dependency: transitive
8686
description:
8787
name: device_meta
88-
sha256: bc525cabecfaeb6c75dd4c5c923552c1c5a3167fca0b9bec31659f612660ace3
88+
sha256: "18b3eb48777018e01b34b4ebbe0bf584f5ef17d77215b11dc85ec1a7307c06e0"
8989
url: "https://pub.dev"
9090
source: hosted
91-
version: "1.1.27"
91+
version: "1.1.28"
9292
dio:
9393
dependency: transitive
9494
description:
@@ -109,10 +109,10 @@ packages:
109109
dependency: transitive
110110
description:
111111
name: error_stack
112-
sha256: "76fea2b3cbf7470ca2f87de851591f910d3b007a5be78824a92e988dbd431c87"
112+
sha256: cb189baf478bb896f204485fe6633728eacde26aa944ba9744e501f8a84901a4
113113
url: "https://pub.dev"
114114
source: hosted
115-
version: "1.4.0"
115+
version: "1.7.1"
116116
fake_async:
117117
dependency: transitive
118118
description:
@@ -323,7 +323,7 @@ packages:
323323
path: ".."
324324
relative: true
325325
source: path
326-
version: "0.0.4"
326+
version: "1.0.1"
327327
leak_tracker:
328328
dependency: transitive
329329
description:
@@ -376,10 +376,10 @@ packages:
376376
dependency: transitive
377377
description:
378378
name: nylo_support
379-
sha256: "8fa3d218c3e9462ba63ba0c05df4b5446582e3a2e8b8cf04cd59648eca99f319"
379+
sha256: "1d7202461d501031491b1a614bce288ab8becf72d52c8ab9a47e8096dbfc12ba"
380380
url: "https://pub.dev"
381381
source: hosted
382-
version: "5.72.0"
382+
version: "5.75.3"
383383
page_transition:
384384
dependency: transitive
385385
description:

lib/laravel_notify_fcm.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import 'package:firebase_messaging/firebase_messaging.dart';
77
import 'package:laravel_notify_fcm/networking/laravel_fcm_api_service.dart';
88

99
/// LaravelNotifyFcm version
10-
const String _laravelNotifyFcmVersion = '1.0.0';
10+
const String _laravelNotifyFcmVersion = '1.0.1';
1111

1212
/// LaravelNotifyFcm class
1313
class LaravelNotifyFcm {

pubspec.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ packages:
8585
dependency: "direct main"
8686
description:
8787
name: device_meta
88-
sha256: bc525cabecfaeb6c75dd4c5c923552c1c5a3167fca0b9bec31659f612660ace3
88+
sha256: "18b3eb48777018e01b34b4ebbe0bf584f5ef17d77215b11dc85ec1a7307c06e0"
8989
url: "https://pub.dev"
9090
source: hosted
91-
version: "1.1.27"
91+
version: "1.1.28"
9292
dio:
9393
dependency: "direct main"
9494
description:
@@ -109,10 +109,10 @@ packages:
109109
dependency: transitive
110110
description:
111111
name: error_stack
112-
sha256: "76fea2b3cbf7470ca2f87de851591f910d3b007a5be78824a92e988dbd431c87"
112+
sha256: cb189baf478bb896f204485fe6633728eacde26aa944ba9744e501f8a84901a4
113113
url: "https://pub.dev"
114114
source: hosted
115-
version: "1.4.0"
115+
version: "1.7.1"
116116
fake_async:
117117
dependency: transitive
118118
description:
@@ -369,10 +369,10 @@ packages:
369369
dependency: "direct main"
370370
description:
371371
name: nylo_support
372-
sha256: "8fa3d218c3e9462ba63ba0c05df4b5446582e3a2e8b8cf04cd59648eca99f319"
372+
sha256: "1d7202461d501031491b1a614bce288ab8becf72d52c8ab9a47e8096dbfc12ba"
373373
url: "https://pub.dev"
374374
source: hosted
375-
version: "5.72.0"
375+
version: "5.75.3"
376376
page_transition:
377377
dependency: transitive
378378
description:

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: laravel_notify_fcm
22
description: "Laravel Notify for Firebase Cloud Messaging (FCM) - Send push notifications to your Flutter app from Laravel."
3-
version: 1.0.0
3+
version: 1.0.1
44
homepage: https://nylo.dev
55
repository: https://github.com/nylo-core/laravel-notify-fcm
66
issue_tracker: https://github.com/nylo-core/laravel-notify-fcm/issues
@@ -18,8 +18,8 @@ environment:
1818

1919
dependencies:
2020
firebase_messaging: ^14.7.0
21-
nylo_support: ^5.72.0
22-
device_meta: ^1.1.27
21+
nylo_support: ^5.75.3
22+
device_meta: ^1.1.28
2323
pretty_dio_logger: ^1.3.1
2424
dio: ^5.4.3+1
2525

0 commit comments

Comments
 (0)