Skip to content

Commit 1a39792

Browse files
crowcrow
andauthored
Release 24.7.0 (#686)
Co-authored-by: crow <david.crow@airship.com>
1 parent 4d29c88 commit 1a39792

File tree

7 files changed

+16
-8
lines changed

7 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# React Native Module Changelog
22

3+
## Version 24.7.0 - September 16, 2025
4+
5+
Minor release that updates the Android SDK to 19.13.1 and the iOS SDK to 19.9.2.
6+
7+
### Changes
8+
- Updated Android SDK to [19.13.1](https://github.com/urbanairship/android-library/releases/tag/19.13.1)
9+
- Updated iOS SDK to [19.9.2](https://github.com/urbanairship/ios-library/releases/tag/19.9.2)
10+
311
[Migration Guides](https://github.com/urbanairship/react-native-airship/blob/main/MIGRATION.md)
412
[All Releases](https://github.com/urbanairship/react-native-airship/releases)
513

android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Airship_minSdkVersion=23
33
Airship_targetSdkVersion=35
44
Airship_compileSdkVersion=35
55
Airship_ndkversion=26.1.10909125
6-
Airship_airshipProxyVersion=14.7.0
6+
Airship_airshipProxyVersion=14.8.0

ios/AirshipReactNative.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class AirshipReactNative: NSObject {
3939
AirshipProxy.shared
4040
}
4141

42-
public static let version: String = "24.6.0"
42+
public static let version: String = "24.7.0"
4343

4444
private let eventNotifier = EventNotifier()
4545

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ua/react-native-airship",
3-
"version": "24.6.0",
3+
"version": "24.7.0",
44
"description": "Airship plugin for React Native apps.",
55
"source": "./src/index.tsx",
66
"main": "./lib/module/index.js",

react-native-airship.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ Pod::Spec.new do |s|
4040
end
4141
end
4242

43-
s.dependency "AirshipFrameworkProxy", "14.7.0"
43+
s.dependency "AirshipFrameworkProxy", "14.8.0"
4444
end

scripts/update_changelog.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ if [ -n "$IOS_VERSION" ] || [ -n "$ANDROID_VERSION" ]; then
6464
NEW_ENTRY+="\n\n### Changes\n"
6565

6666
if [ -n "$ANDROID_VERSION" ]; then
67-
NEW_ENTRY+="- Updated Android SDK to [$ANDROID_VERSION](https://github.com/urbanairship/android-library/releases/tag/$ANDROID_VERSION")
67+
NEW_ENTRY+="- Updated Android SDK to [$ANDROID_VERSION](https://github.com/urbanairship/android-library/releases/tag/$ANDROID_VERSION)"
6868
fi
6969

7070
if [ -n "$IOS_VERSION" ]; then
7171
NEW_ENTRY+="\n"
72-
NEW_ENTRY+="- Updated iOS SDK to [$IOS_VERSION](https://github.com/urbanairship/ios-library/releases/tag/$IOS_VERSION")
72+
NEW_ENTRY+="- Updated iOS SDK to [$IOS_VERSION](https://github.com/urbanairship/ios-library/releases/tag/$IOS_VERSION)"
7373
fi
7474

7575
else

0 commit comments

Comments
 (0)