Skip to content

Commit

Permalink
🚀 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemilla committed Sep 10, 2024
1 parent 3d64ca1 commit 3954d22
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ internal class CourierPlugin : FlutterPlugin {
}

init {
Courier.agent = CourierAgent.FlutterAndroid(version = "3.3.0")
Courier.agent = CourierAgent.FlutterAndroid(version = "3.4.0")
}

override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Runner/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import UIKit
import Flutter
import courier_flutter

@UIApplicationMain
@main
@objc class AppDelegate: CourierFlutterDelegate {

override func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ packages:
path: ".."
relative: true
source: path
version: "3.2.0"
version: "3.3.0"
crypto:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Demonstrates how to use the courier_flutter plugin.
# pub.dev using `flutter pub publish`. This is preferred for private packages.
publish_to: 'none' # Remove this line if you wish to publish to pub.dev

version: 1.0.0+12
version: 1.0.0+13

environment:
sdk: '>=2.18.1 <3.0.0'
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/CourierFlutterDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ open class CourierFlutterDelegate: FlutterAppDelegate {
super.init()

// Set the api agent version
Courier.agent = CourierAgent.flutterIOS("3.3.0")
Courier.agent = CourierAgent.flutterIOS("3.4.0")

// Handle notification registration
app.registerForRemoteNotifications()
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/CourierFlutterMethodHandler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class CourierFlutterMethodHandler: NSObject {

// Set the flutter ios user agent
// This ensures all the requests are tagged with this agent
Courier.agent = CourierAgent.flutterIOS("3.3.0")
Courier.agent = CourierAgent.flutterIOS("3.4.0")

}

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: courier_flutter
description: Inbox, Push Notifications and Preferences for Flutter
version: 3.3.0
version: 3.4.0
homepage: https://courier.com

environment:
Expand Down

0 comments on commit 3954d22

Please sign in to comment.