Skip to content

Commit

Permalink
Merge pull request #567 from urbanairship/release-18.0.3
Browse files Browse the repository at this point in the history
[MOBILE-4489] Prepare release 18.0.3
  • Loading branch information
khmMouna committed May 17, 2024
2 parents d2c76a8 + 4ca3107 commit bbee14e
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 25 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# React Native Module Changelog

## Version 18.0.3 - May 17, 2024
Patch release that updates to latest iOS SDK.

### Changes
- Updated iOS SDK to 18.2.2

## Version 18.0.2 - May 13, 2024
Patch release that updates to latest Airship SDKs.

Expand Down
44 changes: 22 additions & 22 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
PODS:
- Airship (18.2.0):
- Airship/Automation (= 18.2.0)
- Airship/Basement (= 18.2.0)
- Airship/Core (= 18.2.0)
- Airship/FeatureFlags (= 18.2.0)
- Airship/MessageCenter (= 18.2.0)
- Airship/PreferenceCenter (= 18.2.0)
- Airship/Automation (18.2.0):
- Airship (18.2.2):
- Airship/Automation (= 18.2.2)
- Airship/Basement (= 18.2.2)
- Airship/Core (= 18.2.2)
- Airship/FeatureFlags (= 18.2.2)
- Airship/MessageCenter (= 18.2.2)
- Airship/PreferenceCenter (= 18.2.2)
- Airship/Automation (18.2.2):
- Airship/Core
- Airship/Basement (18.2.0)
- Airship/Core (18.2.0):
- Airship/Basement (18.2.2)
- Airship/Core (18.2.2):
- Airship/Basement
- Airship/FeatureFlags (18.2.0):
- Airship/FeatureFlags (18.2.2):
- Airship/Core
- Airship/MessageCenter (18.2.0):
- Airship/MessageCenter (18.2.2):
- Airship/Core
- Airship/PreferenceCenter (18.2.0):
- Airship/PreferenceCenter (18.2.2):
- Airship/Core
- AirshipFrameworkProxy (6.2.0):
- Airship (= 18.2.0)
- AirshipServiceExtension (18.2.0)
- AirshipFrameworkProxy (6.2.2):
- Airship (= 18.2.2)
- AirshipServiceExtension (18.2.2)
- boost (1.83.0)
- DoubleConversion (1.1.6)
- FBLazyVector (0.73.4)
Expand Down Expand Up @@ -907,8 +907,8 @@ PODS:
- React-Mapbuffer (0.73.4):
- glog
- React-debug
- react-native-airship (18.0.2):
- AirshipFrameworkProxy (= 6.2.0)
- react-native-airship (18.0.3):
- AirshipFrameworkProxy (= 6.2.2)
- glog
- RCT-Folly (= 2022.05.16.00)
- React-Core
Expand Down Expand Up @@ -1279,9 +1279,9 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/yoga"

SPEC CHECKSUMS:
Airship: 267a2a901ca3242f0efcd5b1ba6f10171f924912
AirshipFrameworkProxy: 55c75d5365cbad8933aa730af703eba9c53834d1
AirshipServiceExtension: db0e8b08ddc83f19613a4f37f1925f65859a7111
Airship: db3353f631bd21d8b82fcd90083c5dea088e05c0
AirshipFrameworkProxy: b859033729d465dc20a5e1e454e7a3f8ab630ad2
AirshipServiceExtension: 1c42d463c21c4fa0ddc078e20e281c7b2c965b41
boost: d3f49c53809116a5d38da093a8aa78bf551aed09
DoubleConversion: fea03f2699887d960129cc54bba7e52542b6f953
FBLazyVector: 84f6edbe225f38aebd9deaf1540a4160b1f087d7
Expand Down Expand Up @@ -1311,7 +1311,7 @@ SPEC CHECKSUMS:
React-jsinspector: 9ac353eccf6ab54d1e0a33862ba91221d1e88460
React-logger: 0a57b68dd2aec7ff738195f081f0520724b35dab
React-Mapbuffer: 63913773ed7f96b814a2521e13e6d010282096ad
react-native-airship: 92037962314c6d952d40987fc28e25abe9d43d38
react-native-airship: 3a221c7ef213dd0f1d715022d6d240d52d3813fd
react-native-safe-area-context: b97eb6f9e3b7f437806c2ce5983f479f8eb5de4b
React-nativeconfig: d7af5bae6da70fa15ce44f045621cf99ed24087c
React-NativeModulesApple: 0123905d5699853ac68519607555a9a4f5c7b3ac
Expand Down
2 changes: 1 addition & 1 deletion ios/AirshipReactNative.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class AirshipReactNative: NSObject {
AirshipProxy.shared
}

public static let version: String = "18.0.2"
public static let version: String = "18.0.3"

private let eventNotifier = EventNotifier()

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ua/react-native-airship",
"version": "18.0.2",
"version": "18.0.3",
"description": "Airship plugin for React Native apps.",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
2 changes: 1 addition & 1 deletion react-native-airship.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ Pod::Spec.new do |s|
s.dependency "React-Core"
end

s.dependency "AirshipFrameworkProxy", "6.2.0"
s.dependency "AirshipFrameworkProxy", "6.2.2"
end

0 comments on commit bbee14e

Please sign in to comment.