Skip to content

Commit

Permalink
Merge branch 'develop' into fixes-variant-assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
yusuftor committed Jan 30, 2025
2 parents 750c7f2 + 5d5666d commit f0c0f39
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

The changelog for `SuperwallKit`. Also see the [releases](https://github.com/superwall/Superwall-iOS/releases) on GitHub.

## 3.12.3

### Fixes

- Fixes an issue where trying to purchase a product that was previously purchased may prevent the spinner from disappearing on the paywall.

## 3.12.2

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion Sources/SuperwallKit/Misc/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ let sdkVersion = """
*/

let sdkVersion = """
3.12.2
3.12.3
"""
Original file line number Diff line number Diff line change
Expand Up @@ -157,14 +157,6 @@ actor PurchasingCoordinator {
guard product?.productIdentifier == transaction.payment.productIdentifier else {
return
}
// If the transaction completed a purchase, check it is within the last
// hour since starting purchase. Otherwise old purchased products may come
// through and complete the purchase.
if result == .purchased {
guard dateIsWithinLastHour(transaction.transactionDate) else {
return
}
}
lastInternalTransaction = transaction
completion?(result)
}
Expand Down
2 changes: 1 addition & 1 deletion SuperwallKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "SuperwallKit"
s.version = "3.12.2"
s.version = "3.12.3"
s.summary = "Superwall: In-App Paywalls Made Easy"
s.description = "Paywall infrastructure for mobile apps :) we make things like editing your paywall and running price tests as easy as clicking a few buttons. superwall.com"

Expand Down

0 comments on commit f0c0f39

Please sign in to comment.