Skip to content

Commit 4200e88

Browse files
fix version update and changelog (#203)
1 parent 1749256 commit 4200e88

File tree

6 files changed

+20
-17
lines changed

6 files changed

+20
-17
lines changed

CHANGELOG.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 23.2.2
2+
* Fixed bug that caused an issue in the deprecated init call
3+
14
## 23.2.1
25
* Default max segmentation value count changed from 30 to 100
36
* Fixed a bug on Android devices that prevented device ID to be changed when there is no consent given
@@ -12,18 +15,18 @@
1215
* Added 'getDeviceIDType' call to fetch the device ID type.
1316
* Fixed a bug in IOS SDK that failed to correctly process temporary device id.
1417
* Deprecated the following SDK calls:
15-
- 'init'
16-
- 'pushTokenType'
17-
- 'configureIntentRedirectionCheck'
18-
- 'setLocationInit'
19-
- 'enableCrashReporting'
20-
- 'enableParameterTamperingProtection'
21-
- 'setRequiresConsent'
22-
- 'giveConsentInit'
23-
- 'setStarRatingDialogTexts'
24-
- 'enableApm'
25-
- 'enableAttribution'
26-
- 'recordAttributionID'
18+
* 'init'
19+
* 'pushTokenType'
20+
* 'configureIntentRedirectionCheck'
21+
* 'setLocationInit'
22+
* 'enableCrashReporting'
23+
* 'enableParameterTamperingProtection'
24+
* 'setRequiresConsent'
25+
* 'giveConsentInit'
26+
* 'setStarRatingDialogTexts'
27+
* 'enableApm'
28+
* 'enableAttribution'
29+
* 'recordAttributionID'
2730

2831
* Updated underlying Android SDK to version 22.09.3
2932
* Underlying iOS SDK version is 22.06.2

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.2.1'
3+
s.version = '23.2.2'
44
s.license = {
55
:type => 'COMMUNITY',
66
:text => <<-LICENSE

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
@@ -83,7 +83,7 @@ public String toString() {
8383
public class CountlyReactNative extends ReactContextBaseJavaModule implements LifecycleEventListener {
8484

8585
public static final String TAG = "CountlyRNPlugin";
86-
private String COUNTLY_RN_SDK_VERSION_STRING = "23.2.1";
86+
private String COUNTLY_RN_SDK_VERSION_STRING = "23.2.2";
8787
private String COUNTLY_RN_SDK_NAME = "js-rnb-android";
8888

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

example/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ rm App.js
1111
curl https://raw.githubusercontent.com/Countly/countly-sdk-react-native-bridge/master/example/App.js --output App.js
1212
curl https://raw.githubusercontent.com/Countly/countly-sdk-react-native-bridge/master/example/Example.js --output Example.js
1313

14-
yarn add countly-sdk-react-native-bridge@23.2.1
14+
yarn add countly-sdk-react-native-bridge@23.2.2
1515

1616
cd ./ios
1717
pod install

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.2.1";
27+
NSString *const kCountlyReactNativeSDKVersion = @"23.2.2";
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.2.1",
3+
"version": "23.2.2",
44
"author": "Countly <hello@count.ly> (https://count.ly/)",
55
"bugs": {
66
"url": "https://github.com/Countly/countly-sdk-react-native-bridge/issues"

0 commit comments

Comments
 (0)