Skip to content

Commit b1d08ff

Browse files
authored
Merge pull request pusher#33 from pusher/release-1.1.1
Prepare v1.1.1
2 parents c426720 + aae9780 commit b1d08ff

File tree

10 files changed

+27
-12
lines changed

10 files changed

+27
-12
lines changed

packages/pusher_beams/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.1.1
2+
- Fix `PusherBeamsPlugin.kt` `onNewIntent` null safety
3+
14
## 1.1.0
25
- Add a `getInitialMessage` method to accomplish deep-linking from a Push Notification
36

packages/pusher_beams/pubspec.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: pusher_beams
22
description: Official Flutter Plugin for Pusher Beams, receive notifications easily on your Flutter application with Pusher Beams.
3-
version: 1.1.0
3+
version: 1.1.1
44
repository: https://github.com/pusher/push-notifications-flutter
55
issue_tracker: https://github.com/pusher/push-notifications-flutter/issues
66

@@ -11,10 +11,10 @@ environment:
1111
dependencies:
1212
flutter:
1313
sdk: flutter
14-
pusher_beams_platform_interface: ^1.1.0
15-
pusher_beams_web: ^1.1.0
16-
pusher_beams_android: ^1.1.0
17-
pusher_beams_ios: ^1.1.0
14+
pusher_beams_platform_interface: ^1.1.1
15+
pusher_beams_web: ^1.1.1
16+
pusher_beams_android: ^1.1.1
17+
pusher_beams_ios: ^1.1.1
1818
uuid: ^3.0.5
1919

2020
dev_dependencies:

packages/pusher_beams_android/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.1.1
2+
- Fix `PusherBeamsPlugin.kt` `onNewIntent` null safety
3+
14
## 1.1.0
25
- Add a `getInitialMessage` method to accomplish deep-linking from a Push Notification
36

packages/pusher_beams_android/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: pusher_beams_android
22
description: The Android implementation from Pusher Beams for Flutter, intended to be a platform-specific package.
3-
version: 1.1.0
3+
version: 1.1.1
44
repository: https://github.com/pusher/push-notifications-flutter
55
issue_tracker: https://github.com/pusher/push-notifications-flutter/issues?q=is%3Aissue+is%3Aopen+label%3Aandroid
66

@@ -11,7 +11,7 @@ environment:
1111
dependencies:
1212
flutter:
1313
sdk: flutter
14-
pusher_beams_platform_interface: ^1.1.0
14+
pusher_beams_platform_interface: ^1.1.1
1515

1616
dev_dependencies:
1717
flutter_test:

packages/pusher_beams_ios/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.1.1
2+
- Fix `PusherBeamsPlugin.kt` `onNewIntent` null safety
3+
14
## 1.1.0
25
- Add a `getInitialMessage` method to accomplish deep-linking from a Push Notification
36

packages/pusher_beams_ios/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: pusher_beams_ios
22
description: The iOS implementation from Pusher Beams for Flutter, intended to be a platform-specific package.
3-
version: 1.1.0
3+
version: 1.1.1
44
repository: https://github.com/pusher/push-notifications-flutter
55
issue_tracker: https://github.com/pusher/push-notifications-flutter/issues?q=is%3Aissue+is%3Aopen+label%3Aios
66

@@ -11,7 +11,7 @@ environment:
1111
dependencies:
1212
flutter:
1313
sdk: flutter
14-
pusher_beams_platform_interface: ^1.1.0
14+
pusher_beams_platform_interface: ^1.1.1
1515

1616
dev_dependencies:
1717
flutter_test:

packages/pusher_beams_platform_interface/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.1.1
2+
- Fix `PusherBeamsPlugin.kt` `onNewIntent` null safety
3+
14
## 1.1.0
25
- Add a `getInitialMessage` method to accomplish deep-linking from a Push Notification
36

packages/pusher_beams_platform_interface/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: pusher_beams_platform_interface
22
description: A common platform interface from Pusher Beams for Flutter, intended to be the platform interface package.
3-
version: 1.1.0
3+
version: 1.1.1
44
repository: https://github.com/pusher/push-notifications-flutter
55
issue_tracker: https://github.com/pusher/push-notifications-flutter/issues?q=is%3Aissue+is%3Aopen+label%3Ainterface
66

packages/pusher_beams_web/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.1.1
2+
- Fix `PusherBeamsPlugin.kt` `onNewIntent` null safety
3+
14
## 1.1.0
25
- Add a `getInitialMessage` method to accomplish deep-linking from a Push Notification
36

packages/pusher_beams_web/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: pusher_beams_web
22
description: The Web implementation from Pusher Beams for Flutter, intended to be a platform-specific package.
3-
version: 1.1.0
3+
version: 1.1.1
44
repository: https://github.com/pusher/push-notifications-flutter
55
issue_tracker: https://github.com/pusher/push-notifications-flutter/issues?q=is%3Aissue+is%3Aopen+label%3Aweb
66

@@ -13,7 +13,7 @@ dependencies:
1313
sdk: flutter
1414
flutter_web_plugins:
1515
sdk: flutter
16-
pusher_beams_platform_interface: ^1.1.0
16+
pusher_beams_platform_interface: ^1.1.1
1717
js: ^0.6.3
1818
uuid: ^3.0.5
1919

0 commit comments

Comments
 (0)