Skip to content
Open
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.

## Unreleased

### Fixes

- Bumps the declared minimum macOS deployment target from 10.12 to 10.15 in `Package.swift` to match the macOS version required by the SDK's actual code (`Combine`, `async/await`, `UnsafeContinuation`). This makes integration into Mac Catalyst targets fail at resolve time with a clear deployment-target message instead of producing confusing "is only available in macOS 10.15 or newer" errors deep in the source.

## 4.15.4

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let package = Package(
defaultLocalization: "en",
platforms: [
.iOS(.v13),
.macOS(.v10_12),
.macOS(.v10_15),
.watchOS("6.2")
],
products: [
Expand Down