Skip to content

Commit 6040082

Browse files
committed
Merge branch 'develop'
2 parents e5aa4c0 + 76ff0fd commit 6040082

File tree

5 files changed

+37
-6
lines changed

5 files changed

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

[email protected]

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

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

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
# Northwind-SQLite3.swift
1+
<h2>Northwind-SQLite3.swift
2+
<img src="https://zeezide.com/img/lighter/Lighter256.png"
3+
align="right" width="64" height="64" />
4+
</h2>
25

36
A fork of Northwind-SQLite3 which packages the Northwind
47
database as a Swift module/package.
58

69
Swift package documentation:
7-
[NorthwindSQLite.swift](https://lighter-swift.github.io/NorthwindSQLite.swift/documentation/northwind/).
10+
[NorthwindSQLite.swift](https://northwind-swift.github.io/NorthwindSQLite.swift/documentation/northwind/).
811

912
**Note**:
1013
Due to an Xcode 14/15 bug the Northwind module cannot yet be directly added to an
@@ -47,7 +50,7 @@ let package = Package(
4750
targets: ["LocalHelper"]),
4851
],
4952
dependencies: [
50-
.package(url: "https://github.com/Lighter-swift/NorthwindSQLite.swift.git",
53+
.package(url: "https://github.com/Northwind-swift/NorthwindSQLite.swift.git",
5154
branch: "develop")
5255
],
5356
targets: [

0 commit comments

Comments
 (0)