From 4ad895879b7985ebf33f913ab417b815a4c26b7d Mon Sep 17 00:00:00 2001 From: turtledreams <62231246+turtledreams@users.noreply.github.com> Date: Fri, 15 Dec 2023 21:19:59 +0900 Subject: [PATCH] version update (#278) --- CHANGELOG.md | 6 ++++++ CountlyReactNative.podspec | 2 +- android/build.gradle | 2 +- .../java/ly/count/android/sdk/react/CountlyReactNative.java | 2 +- ios/src/CountlyReactNative.m | 2 +- package.json | 2 +- 6 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47d1fbbb..573f4a1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 23.12.0 +* Added TS type declerations to the SDK + +* Updated the underlying Android SDK version to 23.12.0 +* Updated the underlying iOS SDK version to 23.12.0 + ## 23.10.0 * Fixed a bug where segment provided to 'logException' was ignored in Android devices * Fixed a bug where bridged SDK logs were not printing diff --git a/CountlyReactNative.podspec b/CountlyReactNative.podspec index 732652e9..cbaf0a6a 100644 --- a/CountlyReactNative.podspec +++ b/CountlyReactNative.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'CountlyReactNative' - s.version = '23.10.0' + s.version = '23.12.0' s.license = { :type => 'COMMUNITY', :text => <<-LICENSE diff --git a/android/build.gradle b/android/build.gradle index 35d9a836..4b0b40a4 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -41,7 +41,7 @@ repositories { dependencies { implementation "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}" - implementation 'ly.count.android:sdk:23.8.2' + implementation 'ly.count.android:sdk:23.12.0' // Import the BoM for the Firebase platform // The BoM version of 28.4.2 is the newest release that will target firebase-messaging version 22 diff --git a/android/src/main/java/ly/count/android/sdk/react/CountlyReactNative.java b/android/src/main/java/ly/count/android/sdk/react/CountlyReactNative.java index 98c7a7bc..526805df 100644 --- a/android/src/main/java/ly/count/android/sdk/react/CountlyReactNative.java +++ b/android/src/main/java/ly/count/android/sdk/react/CountlyReactNative.java @@ -88,7 +88,7 @@ public String toString() { public class CountlyReactNative extends ReactContextBaseJavaModule implements LifecycleEventListener { public static final String TAG = "CountlyRNPlugin"; - private String COUNTLY_RN_SDK_VERSION_STRING = "23.10.0"; + private String COUNTLY_RN_SDK_VERSION_STRING = "23.12.0"; private String COUNTLY_RN_SDK_NAME = "js-rnb-android"; private static final CountlyConfig config = new CountlyConfig(); diff --git a/ios/src/CountlyReactNative.m b/ios/src/CountlyReactNative.m index d60591b5..2a54d1f0 100644 --- a/ios/src/CountlyReactNative.m +++ b/ios/src/CountlyReactNative.m @@ -24,7 +24,7 @@ @interface CountlyFeedbackWidget () + (CountlyFeedbackWidget *)createWithDictionary:(NSDictionary *)dictionary; @end -NSString *const kCountlyReactNativeSDKVersion = @"23.10.0"; +NSString *const kCountlyReactNativeSDKVersion = @"23.12.0"; NSString *const kCountlyReactNativeSDKName = @"js-rnb-ios"; CLYPushTestMode const CLYPushTestModeProduction = @"CLYPushTestModeProduction"; diff --git a/package.json b/package.json index 8ceb7237..fa5fef64 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "countly-sdk-react-native-bridge", - "version": "23.10.0", + "version": "23.12.0", "author": "Countly (https://count.ly/)", "bugs": { "url": "https://github.com/Countly/countly-sdk-react-native-bridge/issues"