Skip to content
This repository was archived by the owner on Oct 16, 2025. It is now read-only.

Commit 96367af

Browse files
committed
fix: remove legacy StoreKit support claims and update minimum platform versions
- Remove misleading 'Legacy StoreKit support (iOS 13-14)' from README - Update Package.swift platform requirements to match actual implementation: - iOS 15.0+ (was 13.0+) - macOS 14.0+ (was 10.15+) - tvOS 15.0+ (was 13.0+) - watchOS 8.0+ (was 6.0+) - Update README requirements table to reflect accurate minimum versions - Current implementation only supports StoreKit 2 with @available(iOS 15.0+)
1 parent 5716fe6 commit 96367af

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import PackageDescription
55
let package = Package(
66
name: "OpenIAP",
77
platforms: [
8-
.iOS(.v13),
9-
.macOS(.v10_15),
10-
.tvOS(.v13),
11-
.watchOS(.v6)
8+
.iOS(.v15),
9+
.macOS(.v14),
10+
.tvOS(.v15),
11+
.watchOS(.v8)
1212
],
1313
products: [
1414
.library(

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ Visit [**openiap.dev**](https://openiap.dev) for complete documentation, guides,
2121
## ✨ Features
2222

2323
-**StoreKit 2** support with full iOS 15+ compatibility
24-
-**Legacy StoreKit** fallback for iOS 13-14
2524
-**Cross-platform** support (iOS, macOS, tvOS, watchOS)
2625
-**Unified API** following OpenIAP specification
2726
-**Product management** with intelligent caching
@@ -35,10 +34,10 @@ Visit [**openiap.dev**](https://openiap.dev) for complete documentation, guides,
3534

3635
| Platform | Minimum Version |
3736
|----------|-----------------|
38-
| iOS | 13.0+ |
39-
| macOS | 10.15+ |
40-
| tvOS | 13.0+ |
41-
| watchOS | 6.0+ |
37+
| iOS | 15.0+ |
38+
| macOS | 14.0+ |
39+
| tvOS | 15.0+ |
40+
| watchOS | 8.0+ |
4241
| Swift | 5.9+ |
4342

4443
## 📦 Installation

0 commit comments

Comments
 (0)