Skip to content

Commit 8faf99f

Browse files
lower minimum iOS version to v15 (#81)
1 parent 3f4f079 commit 8faf99f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let package = Package(
1313
name: "elementary",
1414
platforms: [
1515
.macOS(.v14),
16-
.iOS(.v17),
16+
.iOS(.v15),
1717
.tvOS(.v17),
1818
.watchOS(.v10),
1919
],

[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ let package = Package(
2323
name: "elementary",
2424
platforms: [
2525
.macOS(.v14),
26-
.iOS(.v17),
26+
.iOS(.v15),
2727
.tvOS(.v17),
2828
.watchOS(.v10),
2929
],

Sources/Elementary/ServerSupport/SendOnceBox.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#if compiler(>=6.0) && !hasFeature(Embedded)
1+
#if compiler(>=6.0) && !hasFeature(Embedded) && !os(iOS)
22
import Synchronization
33

44
@available(macOS 15.0, *)

Sources/Elementary/ServerSupport/SendableAnyHTMLBox.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#if !hasFeature(Embedded)
1+
#if !hasFeature(Embedded) && !os(iOS)
22
/// A wrapper around an `any HTML` value that can be safely sent once.
33
///
44
/// Note: For non-sendable values, this will only allow the value to be taken only once.

0 commit comments

Comments
 (0)