Skip to content

Commit

Permalink
version update (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
turtledreams committed Dec 15, 2023
1 parent ca40566 commit 4ad8958
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion CountlyReactNative.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion ios/src/CountlyReactNative.m
Original file line number Diff line number Diff line change
Expand Up @@ -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";
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": "countly-sdk-react-native-bridge",
"version": "23.10.0",
"version": "23.12.0",
"author": "Countly <hello@count.ly> (https://count.ly/)",
"bugs": {
"url": "https://github.com/Countly/countly-sdk-react-native-bridge/issues"
Expand Down

0 comments on commit 4ad8958

Please sign in to comment.