Skip to content

Commit

Permalink
🚀 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemilla committed Nov 25, 2024
1 parent e5f3db2 commit b8d2d1b
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 18 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.0.4")
val COURIER_AGENT = CourierAgent.ReactNativeAndroid(version = "5.1.0")
}

internal fun ReactContext.sendEvent(eventName: String, value: Any?) {
Expand Down
2 changes: 1 addition & 1 deletion courier-react-native.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Pod::Spec.new do |s|
s.source_files = "ios/**/*.{h,m,mm,swift}"

# Courier Core Dependency
s.dependency "Courier_iOS", "5.2.7"
s.dependency "Courier_iOS", "5.3.0"

# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
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 29
versionCode 30
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 = 33;
CURRENT_PROJECT_VERSION = 34;
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 = 33;
CURRENT_PROJECT_VERSION = 34;
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>33</string>
<string>34</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>19</string>
<string>20</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>18</string>
<string>19</string>
</dict>
</plist>
10 changes: 5 additions & 5 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
PODS:
- boost (1.76.0)
- courier-react-native (5.0.2):
- Courier_iOS (= 5.2.7)
- courier-react-native (5.0.4):
- Courier_iOS (= 5.3.0)
- RCT-Folly (= 2021.07.22.00)
- React-Core
- Courier_iOS (5.2.7)
- Courier_iOS (5.3.0)
- DoubleConversion (1.1.6)
- FBLazyVector (0.72.4)
- FBReactNativeSpec (0.72.4):
Expand Down Expand Up @@ -604,8 +604,8 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
boost: 57d2868c099736d80fcd648bf211b4431e51a558
courier-react-native: d31c0a8ff328026912a2ec3fa71bfc0ccb8f8433
Courier_iOS: 6613c3d21e8167f1dd20e0364f2812a506c51d77
courier-react-native: 6562c6b13655c7c9535d6549fbda6f8cbf32afbf
Courier_iOS: abc5e2f2348486a5a5694198ef16c146918dc16e
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
FBLazyVector: 5d4a3b7f411219a45a6d952f77d2c0a6c9989da5
FBReactNativeSpec: 3fc2d478e1c4b08276f9dd9128f80ec6d5d85c1f
Expand Down
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.0.4"];
Courier.agent = [CourierAgent reactNativeIOS:@"5.1.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.0.4")
Courier.agent = CourierAgent.reactNativeIOS("5.1.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.0.4",
"version": "5.1.0",
"description": "Inbox, Push Notifications, and Preferences for React Native",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down

0 comments on commit b8d2d1b

Please sign in to comment.