Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

## 4.16.3

### Fixes

- Fixes a build error when compiling the SDK with Xcode 26.0.

## 4.16.2

### Enhancements
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 = """
4.16.2
4.16.3
"""
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ class DeviceHelper {
for: UIScreen.main.traitCollection.userInterfaceStyle
),
fontSize: Int(scaledValue.rounded()),
fontScale: ((scaledValue / 16.0) * 100).rounded() / 100,
fontScale: ((Double(scaledValue) / 16.0) * 100).rounded() / 100,
preferredContentSizeCategory: contentSizeCategoryToken(for: category)
)
}
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 = "4.16.2"
s.version = "4.16.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
Loading