Skip to content

Commit

Permalink
🚀 5.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemilla committed Dec 18, 2024
1 parent 903a43c commit d17cb1b
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion android/src/main/java/com/courierreactnative/Utils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import com.facebook.react.modules.core.DeviceEventManagerModule
import com.google.gson.GsonBuilder

internal object Utils {
val COURIER_AGENT = CourierAgent.ReactNativeAndroid(version = "5.2.3")
val COURIER_AGENT = CourierAgent.ReactNativeAndroid(version = "5.3.0")
}

internal fun ReactContext.sendEvent(eventName: String, value: Any?) {
Expand Down
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ android {
applicationId "com.courierreactnativeexample"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 31
versionCode 32
versionName "1.0"
}
signingConfigs {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = CourierReactNativeExample/CourierReactNativeExample.entitlements;
CURRENT_PROJECT_VERSION = 35;
CURRENT_PROJECT_VERSION = 36;
DEVELOPMENT_TEAM = 83BJVWGX4Q;
ENABLE_BITCODE = NO;
INFOPLIST_FILE = CourierReactNativeExample/Info.plist;
Expand Down Expand Up @@ -663,7 +663,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CODE_SIGN_ENTITLEMENTS = CourierReactNativeExample/CourierReactNativeExample.entitlements;
CURRENT_PROJECT_VERSION = 35;
CURRENT_PROJECT_VERSION = 36;
DEVELOPMENT_TEAM = 83BJVWGX4Q;
INFOPLIST_FILE = CourierReactNativeExample/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
Expand Down
2 changes: 1 addition & 1 deletion example/ios/CourierReactNativeExample/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>35</string>
<string>36</string>
<key>LSRequiresIPhoneOS</key>
<true />
<key>NSAppTransportSecurity</key>
Expand Down
2 changes: 1 addition & 1 deletion example/ios/CourierReactNativeExampleTests/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>21</string>
<string>22</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion example/ios/CourierService/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
<string>$(PRODUCT_MODULE_NAME).NotificationService</string>
</dict>
<key>CFBundleVersion</key>
<string>20</string>
<string>21</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion ios/CourierReactNativeDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ - (id) init {
if (self) {

// Set the user agent
Courier.agent = [CourierAgent reactNativeIOS:@"5.2.3"];
Courier.agent = [CourierAgent reactNativeIOS:@"5.3.0"];

// Register for remote notifications
UIApplication *app = [UIApplication sharedApplication];
Expand Down
2 changes: 1 addition & 1 deletion ios/CourierReactNativeEventEmitter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ internal class CourierReactNativeEventEmitter: RCTEventEmitter {

// Set the user agent
// Used to know the platform performing requests
Courier.agent = CourierAgent.reactNativeIOS("5.2.3")
Courier.agent = CourierAgent.reactNativeIOS("5.3.0")

}

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@trycourier/courier-react-native",
"version": "5.2.3",
"version": "5.3.0",
"description": "Inbox, Push Notifications, and Preferences for React Native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down

0 comments on commit d17cb1b

Please sign in to comment.