Skip to content

Commit 8d3abe7

Browse files
authored
Fix a DocC warning and update SQLiteNIO required version (#109)
* Can't link to stuff that's not in the same module. Fixes a DocC warning. * Update dependency requirement
1 parent 37c1a39 commit 8d3abe7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ let package = Package(
1414
],
1515
dependencies: [
1616
.package(url: "https://github.com/apple/swift-nio.git", from: "2.65.0"),
17-
.package(url: "https://github.com/vapor/sqlite-nio.git", from: "1.8.4"),
17+
.package(url: "https://github.com/vapor/sqlite-nio.git", from: "1.9.0"),
1818
.package(url: "https://github.com/vapor/sql-kit.git", from: "3.29.3"),
1919
.package(url: "https://github.com/vapor/async-kit.git", from: "1.19.0"),
2020
],

[email protected]

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ let package = Package(
1414
],
1515
dependencies: [
1616
.package(url: "https://github.com/apple/swift-nio.git", from: "2.65.0"),
17-
.package(url: "https://github.com/vapor/sqlite-nio.git", from: "1.8.4"),
17+
.package(url: "https://github.com/vapor/sqlite-nio.git", from: "1.9.0"),
1818
.package(url: "https://github.com/vapor/sql-kit.git", from: "3.29.3"),
1919
.package(url: "https://github.com/vapor/async-kit.git", from: "1.19.0"),
2020
],

Sources/SQLiteKit/SQLiteDialect.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import SQLKit
22

3-
/// The ``SQLDialect`` defintions for SQLite.
3+
/// The `SQLDialect` defintions for SQLite.
44
///
55
/// > Note: There is only ever one SQLite library in use by SQLiteNIO in any given process (even if there are
66
/// > other versions of the library being used by other things). As such, there is no need for the dialect to

0 commit comments

Comments
 (0)