Skip to content

Commit 17f58f0

Browse files
committed
🚀 3.5.0
1 parent 2d5bd08 commit 17f58f0

File tree

10 files changed

+13
-13
lines changed

10 files changed

+13
-13
lines changed

android/src/main/kotlin/com/courier/courier_flutter/CourierFlutterActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ open class CourierFlutterActivity : FlutterActivity() {
2121
handler.attach(context, intent)
2222

2323
// Setup and run the agent
24-
Courier.agent = CourierAgent.FlutterAndroid(version = "3.4.1")
24+
Courier.agent = CourierAgent.FlutterAndroid(version = "3.5.0")
2525
Courier.initialize(context)
2626

2727
}

android/src/main/kotlin/com/courier/courier_flutter/CourierFlutterFragmentActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ open class CourierFlutterFragmentActivity : FlutterFragmentActivity() {
2121
handler.attach(this, intent)
2222

2323
// Setup and run the agent
24-
Courier.agent = CourierAgent.FlutterAndroid(version = "3.4.1")
24+
Courier.agent = CourierAgent.FlutterAndroid(version = "3.5.0")
2525
Courier.initialize(this)
2626

2727
}

android/src/main/kotlin/com/courier/courier_flutter/CourierPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ internal class CourierPlugin : FlutterPlugin {
1313
}
1414

1515
init {
16-
Courier.agent = CourierAgent.FlutterAndroid(version = "3.4.1")
16+
Courier.agent = CourierAgent.FlutterAndroid(version = "3.5.0")
1717
}
1818

1919
override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {

example/ios/Podfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PODS:
22
- courier_flutter (0.0.1):
3-
- Courier_iOS (= 4.4.0)
3+
- Courier_iOS (= 4.5.4)
44
- Flutter
5-
- Courier_iOS (4.4.0)
5+
- Courier_iOS (4.5.4)
66
- Firebase/CoreOnly (10.18.0):
77
- FirebaseCore (= 10.18.0)
88
- Firebase/Messaging (10.18.0):
@@ -124,8 +124,8 @@ EXTERNAL SOURCES:
124124
:path: ".symlinks/plugins/url_launcher_ios/ios"
125125

126126
SPEC CHECKSUMS:
127-
courier_flutter: dede4235f927ed1b98d8a3048cf6ee815bd65fc1
128-
Courier_iOS: a9087b89e3ddef426d4843350c77b13792b6d039
127+
courier_flutter: efaa87a6ccb93cd83327e4ceccc356102c207bf1
128+
Courier_iOS: 57d77d0b6a07710ca4798aea559f9451aafb25c5
129129
Firebase: 414ad272f8d02dfbf12662a9d43f4bba9bec2a06
130130
firebase_core: 0af4a2b24f62071f9bf283691c0ee41556dcb3f5
131131
firebase_messaging: 90e8a6db84b6e1e876cebce4f30f01dc495e7014

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ packages:
6363
path: ".."
6464
relative: true
6565
source: path
66-
version: "3.3.0"
66+
version: "3.4.1"
6767
crypto:
6868
dependency: transitive
6969
description:

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Demonstrates how to use the courier_flutter plugin.
55
# pub.dev using `flutter pub publish`. This is preferred for private packages.
66
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
77

8-
version: 1.0.0+13
8+
version: 1.0.0+14
99

1010
environment:
1111
sdk: '>=2.18.1 <3.0.0'

ios/Classes/CourierFlutterDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ open class CourierFlutterDelegate: FlutterAppDelegate {
4141
super.init()
4242

4343
// Set the api agent version
44-
Courier.agent = CourierAgent.flutterIOS("3.4.1")
44+
Courier.agent = CourierAgent.flutterIOS("3.5.0")
4545

4646
// Handle notification registration
4747
app.registerForRemoteNotifications()

ios/Classes/CourierFlutterMethodHandler.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class CourierFlutterMethodHandler: NSObject {
1414

1515
// Set the flutter ios user agent
1616
// This ensures all the requests are tagged with this agent
17-
Courier.agent = CourierAgent.flutterIOS("3.4.1")
17+
Courier.agent = CourierAgent.flutterIOS("3.5.0")
1818

1919
}
2020

ios/courier_flutter.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Inbox, Push Notification & Preferences for Flutter by Courier
1616
s.source = { :path => '.' }
1717
s.source_files = 'Classes/**/*'
1818
s.dependency 'Flutter'
19-
s.dependency 'Courier_iOS', '4.4.0'
19+
s.dependency 'Courier_iOS', '4.5.4'
2020
s.platform = :ios, '13.0'
2121

2222
# Flutter.framework does not contain a i386 slice.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: courier_flutter
22
description: Inbox, Push Notifications and Preferences for Flutter
3-
version: 3.4.1
3+
version: 3.5.0
44
homepage: https://courier.com
55

66
environment:

0 commit comments

Comments
 (0)