Skip to content

Commit 732fa11

Browse files
committed
Make EditorConfiguration sendable
1 parent f175f90 commit 732fa11

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version: 6.1
1+
// swift-tools-version: 5.9
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription

ios/Demo-iOS/Gutenberg.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@
309309
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
310310
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
311311
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
312+
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
312313
LD_RUNPATH_SEARCH_PATHS = (
313314
"$(inherited)",
314315
"@executable_path/Frameworks",
@@ -340,6 +341,7 @@
340341
INFOPLIST_KEY_UILaunchScreen_Generation = YES;
341342
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
342343
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
344+
IPHONEOS_DEPLOYMENT_TARGET = 17.0;
343345
LD_RUNPATH_SEARCH_PATHS = (
344346
"$(inherited)",
345347
"@executable_path/Frameworks",

ios/Sources/GutenbergKit/Sources/EditorConfiguration.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Foundation
22

3-
public struct EditorConfiguration {
3+
public struct EditorConfiguration: Sendable {
44
/// Initial title for populating the editor
55
public let title: String
66
/// Initial content for populating the editor

0 commit comments

Comments
 (0)