Skip to content

Commit 8a1f3e9

Browse files
Merge pull request #249 from Countly/rating-event-fix
Rating event fix
2 parents 089e8d5 + 8b2d729 commit 8a1f3e9

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 23.8.2
2+
- Fixed rating feedback widget event key for widget closed event
3+
14
## 23.8.1
25
- Expanded feedback widget functionality. Added ability to use rating widgets.
36
- Added functionality to access tags for feedback widgets.

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 = '23.8.1'
3+
s.version = '23.8.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 = '23.8.1'
3+
s.version = '23.8.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
@@ -450,7 +450,7 @@
450450
"@loader_path/Frameworks",
451451
);
452452
MACOSX_DEPLOYMENT_TARGET = 10.14;
453-
MARKETING_VERSION = 23.8.1;
453+
MARKETING_VERSION = 23.8.2;
454454
PRODUCT_BUNDLE_IDENTIFIER = ly.count.CountlyiOSSDK;
455455
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
456456
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -479,7 +479,7 @@
479479
"@loader_path/Frameworks",
480480
);
481481
MACOSX_DEPLOYMENT_TARGET = 10.14;
482-
MARKETING_VERSION = 23.8.1;
482+
MARKETING_VERSION = 23.8.2;
483483
PRODUCT_BUNDLE_IDENTIFIER = ly.count.CountlyiOSSDK;
484484
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
485485
PROVISIONING_PROFILE_SPECIFIER = "";

CountlyCommon.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ @interface CountlyCommon ()
2626
#endif
2727
@end
2828

29-
NSString* const kCountlySDKVersion = @"23.8.1";
29+
NSString* const kCountlySDKVersion = @"23.8.2";
3030
NSString* const kCountlySDKName = @"objc-native-ios";
3131

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

CountlyFeedbackWidget.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
NSString* const kCountlyReservedEventSurvey = @"[CLY]_survey";
1717
NSString* const kCountlyReservedEventNPS = @"[CLY]_nps";
18-
NSString* const kCountlyReservedEventRating = @"[CLY]_rating";
18+
NSString* const kCountlyReservedEventRating = @"[CLY]_star_rating";
1919

2020
NSString* const kCountlyFBKeyClosed = @"closed";
2121
NSString* const kCountlyFBKeyShown = @"shown";

0 commit comments

Comments
 (0)