Skip to content

Commit

Permalink
build: lower min required macOS version (#52)
Browse files Browse the repository at this point in the history
<!-- Please use this template for your pull request. -->
<!-- Please use the sections that you need and delete other sections -->

## This PR
- Lowers the required macOS version to 11.

### Related Issues
Nope.

### Notes
SDK doesn't use any API available only in macOS 12.
Also, the current min required version for iOS is 14, released in the
same year as macOS 11 (2020).
And we are planning to use open-feature, but our app targets are too low
😅.

Signed-off-by: Vitalii Budnik <[email protected]>
  • Loading branch information
nekrich authored Dec 13, 2024
1 parent a21214e commit 901d1ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let package = Package(
name: "OpenFeature",
platforms: [
.iOS(.v14),
.macOS(.v12),
.macOS(.v11),
],
products: [
.library(
Expand Down

0 comments on commit 901d1ea

Please sign in to comment.