Skip to content

Commit 5099cd8

Browse files
authored
Merge pull request #397 from Countly/arifBurakDemiray-patch-1
25.4.2
2 parents 8e60b6f + f7c8203 commit 5099cd8

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
## XX.XX.XX
2-
* Adding SDK health check requests after init
3-
* The feedback widgets now have fullscreen and transparent backgrounds for a cleaner look.
4-
* Added a config method to disable server config in the initialization "disableSDKBehaviorSettingsUpdates()".
5-
* Improved request queue handling, added a backoff mechanism to the SDK to better handle cases where the server responds slowly, enabled by default.
6-
* Added a config method to disable backoff mechanism "disableBackoffMechanism"
1+
## 25.4.2
2+
* Added fullscreen support for feedback widgets.
3+
* Added "disableSDKBehaviorSettingsUpdates" init config parameter to disable server config updates.
4+
* Improved request queue handling with a built-in backoff mechanism which is enabled by default.
5+
* Added "disableBackoffMechanism" init config parameter to disable backoff behavior.
6+
* Added support for SDK health checks after initialization
77

88
## 25.4.1
99
* Mitigated an issue that could occur while serializing events to improve stability, performance and memory usage.

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

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

Countly.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -768,7 +768,7 @@
768768
"@loader_path/Frameworks",
769769
);
770770
MACOSX_DEPLOYMENT_TARGET = 10.14;
771-
MARKETING_VERSION = 25.4.1;
771+
MARKETING_VERSION = 25.4.2;
772772
PRODUCT_BUNDLE_IDENTIFIER = ly.count.CountlyiOSSDK;
773773
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
774774
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -800,7 +800,7 @@
800800
"@loader_path/Frameworks",
801801
);
802802
MACOSX_DEPLOYMENT_TARGET = 10.14;
803-
MARKETING_VERSION = 25.4.1;
803+
MARKETING_VERSION = 25.4.2;
804804
PRODUCT_BUNDLE_IDENTIFIER = ly.count.CountlyiOSSDK;
805805
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
806806
PROVISIONING_PROFILE_SPECIFIER = "";

CountlyCommon.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ @interface CountlyCommon ()
2929
#endif
3030
@end
3131

32-
NSString* const kCountlySDKVersion = @"25.4.1";
32+
NSString* const kCountlySDKVersion = @"25.4.2";
3333
NSString* const kCountlySDKName = @"objc-native-ios";
3434

3535
NSString* const kCountlyErrorDomain = @"ly.count.ErrorDomain";

0 commit comments

Comments
 (0)