Skip to content

Commit

Permalink
Merge pull request #240 from Countly/iOS-24.7.0
Browse files Browse the repository at this point in the history
Updated iOS version
  • Loading branch information
turtledreams committed Jul 1, 2024
2 parents ad263d0 + d9887b5 commit babc9f1
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions ios/Classes/CountlyiOS/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
## 24.4.3
## 24.7.0
* Implemented automatic sending of user properties to the server without requiring an explicit call to the `save` method
* Added `setID` method for changing device ID based on the device ID type.
* Added `setID` method for changing device ID based on the device ID type
* Enhanced segmentation values to include additional supported data types beyond `NSString`
* Fixed web view caching issue for widgets

* Mitigated an issue where the terms and conditions URL (`tc` key) was sent without double quotes
* Mitigated an issue where remote config values are not updated after enrolling to a variant
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/CountlyiOS/Countly-PL.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Countly-PL'
s.version = '24.4.3'
s.version = '24.7.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
s.homepage = 'https://github.com/Countly/countly-sdk-ios'
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/CountlyiOS/Countly.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'Countly'
s.version = '24.4.3'
s.version = '24.7.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'Countly is an innovative, real-time, open source mobile analytics platform.'
s.homepage = 'https://github.com/Countly/countly-sdk-ios'
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/CountlyiOS/CountlyCommon.m
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ @interface CountlyCommon ()
#endif
@end

NSString* const kCountlySDKVersion = @"24.4.3";
NSString* const kCountlySDKVersion = @"24.7.0";
NSString* const kCountlySDKName = @"objc-native-ios";

NSString* const kCountlyErrorDomain = @"ly.count.ErrorDomain";
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/CountlyiOS/CountlyRemoteConfigInternal.m
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ - (NSDictionary *) createRCMeta:(NSDictionary *) remoteConfig

- (void)updateMetaStateToCache
{
CLY_LOG_D(@"'updateMetaStateToCache' will erase all remote config values.");
CLY_LOG_D(@"'updateMetaStateToCache' will cache all remote config values.");
[self.cachedRemoteConfig enumerateKeysAndObjectsUsingBlock:^(NSString * key, CountlyRCData * countlyRCMeta, BOOL * stop)
{
countlyRCMeta.isCurrentUsersData = NO;
Expand Down

0 comments on commit babc9f1

Please sign in to comment.