Skip to content

Commit 965f3a3

Browse files
authored
SDK's versions and changelog updated (#93)
* SDK's and changelog updated * SDK version updated in all files
1 parent dd6f3c1 commit 965f3a3

File tree

16 files changed

+64
-20
lines changed

16 files changed

+64
-20
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 22.02.2
2+
* Added a way to add allowed package names for push notification intent security.
3+
* Added a way to add allowed class names for push notification intent security.
4+
* Updated underlying android SDK version to 22.02.3
5+
* Updated underlying iOS SDK version to 22.06.1
6+
17
## 22.02.1
28
* Fixed opening two intent for MainActivity when clicking on push notification with deep-link.
39
* Updated underlying android SDK version to 22.02.1

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 = '22.02.1'
3+
s.version = '22.02.2'
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:22.02.1'
44+
implementation 'ly.count.android:sdk:22.02.3'
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
@@ -79,7 +79,7 @@ public String toString(){
7979
public class CountlyReactNative extends ReactContextBaseJavaModule implements LifecycleEventListener {
8080

8181
public static final String TAG = "CountlyRNPlugin";
82-
private String COUNTLY_RN_SDK_VERSION_STRING = "22.02.1";
82+
private String COUNTLY_RN_SDK_VERSION_STRING = "22.02.2";
8383
private String COUNTLY_RN_SDK_NAME = "js-rnb-android";
8484

8585
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-
14+
1515

1616
cd ./ios
1717
pod install

ios/src/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 22.06.1
2+
- Fixed user details consent issue on SDK start
3+
- Updated feedback widget internal webview design and layout
4+
5+
- Other various improvements
6+
- Updated HeaderDocs, internal logs, inline notes and pragma marks
7+
8+
9+
110
## 22.06.0
211
- Added `CountlyAutoViewTrackingName` protocol for supporting custom view titles with AutoViewTracking
312
- Added `setNewURLSessionConfiguration:` method to be able change URL session configuraion on the go (thanks @angelix)

ios/src/Countly-PL.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 = 'Countly-PL'
3-
s.version = '22.06.0'
3+
s.version = '22.06.1'
44
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
55
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
66
s.homepage = 'https://github.com/Countly/countly-sdk-ios'

ios/src/Countly.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ NS_ASSUME_NONNULL_BEGIN
526526
* @param widgetID ID of the feedback widget created on Countly Server.
527527
* @param completionHandler A completion handler block to be executed when feedback widget is dismissed by user or there is an error.
528528
*/
529-
- (void)presentFeedbackWidgetWithID:(NSString *)widgetID completionHandler:(void (^)(NSError * __nullable error))completionHandler DEPRECATED_MSG_ATTRIBUTE("Use 'presentRatingWidgetWithID:' method instead!");
529+
- (void)presentFeedbackWidgetWithID:(NSString *)widgetID completionHandler:(void (^)(NSError * __nullable error))completionHandler DEPRECATED_MSG_ATTRIBUTE("Use 'presentRatingWidgetWithID:completionHandler' method instead!");
530530

531531
/**
532532
* Presents rating widget with given ID in a WKWebView placed in a UIViewController.
@@ -599,7 +599,7 @@ NS_ASSUME_NONNULL_BEGIN
599599

600600
/**
601601
* Records indirect attribution with given key-value pairs.
602-
* @discussion Keys could be a predefined CLYAttributionKey or any non-zero length valid string.
602+
* @discussion Keys could be a predefined @c CLYAttributionKey or any non-zero length valid string.
603603
* @discussion This method sends an immediate request.
604604
* @discussion Calls to this method will be ignored if:
605605
* @discussion - Consent for @c CLYConsentAttribution is not given, while @c requiresConsent flag is set on initial configuration.

ios/src/Countly.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 = 'Countly'
3-
s.version = '22.06.0'
3+
s.version = '22.06.1'
44
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
55
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
66
s.homepage = 'https://github.com/Countly/countly-sdk-ios'

ios/src/Countly.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@
410410
"@loader_path/Frameworks",
411411
);
412412
MACOSX_DEPLOYMENT_TARGET = 10.14;
413-
MARKETING_VERSION = 22.06.0;
413+
MARKETING_VERSION = 22.06.1;
414414
PRODUCT_BUNDLE_IDENTIFIER = ly.count.CountlyiOSSDK;
415415
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
416416
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -439,7 +439,7 @@
439439
"@loader_path/Frameworks",
440440
);
441441
MACOSX_DEPLOYMENT_TARGET = 10.14;
442-
MARKETING_VERSION = 22.06.0;
442+
MARKETING_VERSION = 22.06.1;
443443
PRODUCT_BUNDLE_IDENTIFIER = ly.count.CountlyiOSSDK;
444444
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
445445
PROVISIONING_PROFILE_SPECIFIER = "";

0 commit comments

Comments
 (0)