Skip to content

Commit

Permalink
Merge pull request #436 from qonversion/release/5.5.2
Browse files Browse the repository at this point in the history
Release 5.5.2
  • Loading branch information
suriksarkisyan authored Jan 9, 2024
2 parents a2fcf80 + dff0a77 commit 564e88f
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Framework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>5.5.1</string>
<string>5.5.2</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Qonversion.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Pod::Spec.new do |s|
idfa_exclude_files = ['Sources/Qonversion/IDFA']
s.name = 'Qonversion'
s.swift_version = '5.5'
s.version = '5.5.1'
s.version = '5.5.2'
s.summary = 'qonversion.io'
s.description = <<-DESC
Deep Analytics for iOS Subscriptions
Expand Down
2 changes: 1 addition & 1 deletion Sources/Qonversion/Public/QONConfiguration.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#import "QONConfiguration.h"
#import "QNAPIConstants.h"

static NSString *const kSDKVersion = @"5.5.1";
static NSString *const kSDKVersion = @"5.5.2";

@interface QONConfiguration ()

Expand Down
2 changes: 1 addition & 1 deletion Sources/Qonversion/Public/QONTransaction.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ typedef NS_ENUM(NSInteger, QONTransactionType) {
QONTransactionTypeUnknown = 0,
QONTransactionTypeSubscriptionStarted = 1,
QONTransactionTypeSubscriptionRenewed = 2,
QONTransactionTypeTrialStrated = 3,
QONTransactionTypeTrialStarted = 3,
QONTransactionTypeIntroStarted = 4,
QONTransactionTypeIntroRenewed = 5,
QONTransactionTypeNonConsumablePurchase = 6
Expand Down
2 changes: 1 addition & 1 deletion Sources/Qonversion/Public/QONTransaction.m
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ - (NSString *)prettyType {
case QONTransactionTypeSubscriptionRenewed:
result = @"subscription renewed"; break;

case QONTransactionTypeTrialStrated:
case QONTransactionTypeTrialStarted:
result = @"trial started"; break;

case QONTransactionTypeIntroStarted:
Expand Down
2 changes: 1 addition & 1 deletion Sources/Qonversion/Qonversion/Mappers/QNMapper/QNMapper.m
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ + (QONTransaction *)mapEntitlementTransaction:(NSDictionary *)rawTransaction {

NSDictionary *transactionTypes = @{@"subscription_started": @(QONTransactionTypeSubscriptionStarted),
@"subscription_renewed": @(QONTransactionTypeSubscriptionRenewed),
@"trial_started": @(QONTransactionTypeTrialStrated),
@"trial_started": @(QONTransactionTypeTrialStarted),
@"intro_started": @(QONTransactionTypeIntroStarted),
@"intro_renewed": @(QONTransactionTypeIntroRenewed),
@"nonconsumable_purchase": @(QONTransactionTypeNonConsumablePurchase)};
Expand Down
4 changes: 2 additions & 2 deletions fastlane/report.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@



<testcase classname="fastlane.lanes" name="0: update_plist" time="0.057436">
<testcase classname="fastlane.lanes" name="0: update_plist" time="0.041698">

</testcase>


<testcase classname="fastlane.lanes" name="1: version_bump_podspec" time="0.006088">
<testcase classname="fastlane.lanes" name="1: version_bump_podspec" time="0.001505">

</testcase>

Expand Down

0 comments on commit 564e88f

Please sign in to comment.