Skip to content

Commit 4ad8958

Browse files
authored
version update (#278)
1 parent ca40566 commit 4ad8958

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 23.12.0
2+
* Added TS type declerations to the SDK
3+
4+
* Updated the underlying Android SDK version to 23.12.0
5+
* Updated the underlying iOS SDK version to 23.12.0
6+
17
## 23.10.0
28
* Fixed a bug where segment provided to 'logException' was ignored in Android devices
39
* Fixed a bug where bridged SDK logs were not printing

CountlyReactNative.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'CountlyReactNative'
3-
s.version = '23.10.0'
3+
s.version = '23.12.0'
44
s.license = {
55
:type => 'COMMUNITY',
66
:text => <<-LICENSE

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ repositories {
4141

4242
dependencies {
4343
implementation "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}"
44-
implementation 'ly.count.android:sdk:23.8.2'
44+
implementation 'ly.count.android:sdk:23.12.0'
4545

4646
// Import the BoM for the Firebase platform
4747
// The BoM version of 28.4.2 is the newest release that will target firebase-messaging version 22

android/src/main/java/ly/count/android/sdk/react/CountlyReactNative.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public String toString() {
8888
public class CountlyReactNative extends ReactContextBaseJavaModule implements LifecycleEventListener {
8989

9090
public static final String TAG = "CountlyRNPlugin";
91-
private String COUNTLY_RN_SDK_VERSION_STRING = "23.10.0";
91+
private String COUNTLY_RN_SDK_VERSION_STRING = "23.12.0";
9292
private String COUNTLY_RN_SDK_NAME = "js-rnb-android";
9393

9494
private static final CountlyConfig config = new CountlyConfig();

ios/src/CountlyReactNative.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ @interface CountlyFeedbackWidget ()
2424
+ (CountlyFeedbackWidget *)createWithDictionary:(NSDictionary *)dictionary;
2525
@end
2626

27-
NSString *const kCountlyReactNativeSDKVersion = @"23.10.0";
27+
NSString *const kCountlyReactNativeSDKVersion = @"23.12.0";
2828
NSString *const kCountlyReactNativeSDKName = @"js-rnb-ios";
2929

3030
CLYPushTestMode const CLYPushTestModeProduction = @"CLYPushTestModeProduction";

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "countly-sdk-react-native-bridge",
3-
"version": "23.10.0",
3+
"version": "23.12.0",
44
"author": "Countly <[email protected]> (https://count.ly/)",
55
"bugs": {
66
"url": "https://github.com/Countly/countly-sdk-react-native-bridge/issues"

0 commit comments

Comments
 (0)