Skip to content

Commit 596f446

Browse files
committed
Bump Lighter version
Also add a 5.9 Package.swift, might be necessary?
1 parent 6210907 commit 596f446

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

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.24"),
15+
from: "1.0.28"),
1616
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
1717
],
1818

Package@swift-5.7.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.24"),
15+
from: "1.0.28"),
1616
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
1717
],
1818

Package@swift-5.9.swift

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// swift-tools-version:5.9
2+
3+
import PackageDescription
4+
5+
var package = Package(
6+
name: "Northwind",
7+
8+
platforms: [ .macOS(.v10_15), .iOS(.v13) ],
9+
products: [
10+
.library(name: "Northwind", targets: [ "Northwind" ])
11+
],
12+
13+
dependencies: [
14+
.package(url: "https://github.com/Lighter-swift/Lighter.git",
15+
from: "1.0.28"),
16+
.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0")
17+
],
18+
19+
targets: [
20+
.target(name : "Northwind",
21+
dependencies : [ "Lighter" ],
22+
path : "dist",
23+
resources : [ .copy("northwind.db") ],
24+
plugins : [ .plugin(name: "Enlighter", package: "Lighter") ])
25+
]
26+
)

0 commit comments

Comments
 (0)