Skip to content

Commit 06a8e11

Browse files
committed
Merge branch 'develop'
2 parents 6040082 + 7e74fdb commit 06a8e11

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

Lighter.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"swiftFilters" : true,
2929
"showViewHintComment" : false,
3030
"commentsWithSQL" : true,
31-
"extraRecordTypeConformances" : [ "Codable" ],
31+
"extraRecordTypeConformances" : [ "Codable", "Sendable" ],
3232
"embedRecordTypesInDatabaseType" : false,
3333
"optionalHelpersInDatabase" : true,
3434
"Raw": {

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var package = Package(
1212

1313
dependencies: [
1414
.package(url: "https://github.com/Lighter-swift/Lighter.git",
15-
from: "1.0.32"),
15+
from: "1.2.4"),
1616
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
1717
],
1818

[email protected]

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
import PackageDescription
44

5+
#if swift(>=5.10)
6+
let settings = [ SwiftSetting.enableExperimentalFeature("StrictConcurrency") ]
7+
#else
8+
let settings = [ SwiftSetting ]()
9+
#endif
10+
511
var package = Package(
612
name: "Northwind",
713

@@ -14,15 +20,16 @@ var package = Package(
1420

1521
dependencies: [
1622
.package(url: "https://github.com/Lighter-swift/Lighter.git",
17-
from: "1.0.32"),
23+
from: "1.2.4"),
1824
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
1925
],
2026

2127
targets: [
22-
.target(name : "Northwind",
23-
dependencies : [ "Lighter" ],
24-
path : "dist",
25-
resources : [ .copy("northwind.db") ],
26-
plugins : [ .plugin(name: "Enlighter", package: "Lighter") ])
28+
.target(name : "Northwind",
29+
dependencies : [ "Lighter" ],
30+
path : "dist",
31+
resources : [ .copy("northwind.db") ],
32+
swiftSettings : settings,
33+
plugins : [ .plugin(name: "Enlighter", package: "Lighter") ])
2734
]
2835
)

[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var package = Package(
1212

1313
dependencies: [
1414
.package(url: "https://github.com/Lighter-swift/Lighter.git",
15-
from: "1.0.32"),
15+
from: "1.2.4"),
1616
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
1717
],
1818

[email protected]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ var package = Package(
1212

1313
dependencies: [
1414
.package(url: "https://github.com/Lighter-swift/Lighter.git",
15-
from: "1.0.32"),
15+
from: "1.2.4"),
1616
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
1717
],
1818

0 commit comments

Comments
 (0)