Skip to content

Commit

Permalink
Fix a DocC warning and update SQLiteNIO required version (#109)
Browse files Browse the repository at this point in the history
* Can't link to stuff that's not in the same module. Fixes a DocC warning.
* Update dependency requirement
  • Loading branch information
gwynne authored May 16, 2024
1 parent 37c1a39 commit 8d3abe7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", from: "2.65.0"),
.package(url: "https://github.com/vapor/sqlite-nio.git", from: "1.8.4"),
.package(url: "https://github.com/vapor/sqlite-nio.git", from: "1.9.0"),
.package(url: "https://github.com/vapor/sql-kit.git", from: "3.29.3"),
.package(url: "https://github.com/vapor/async-kit.git", from: "1.19.0"),
],
Expand Down
2 changes: 1 addition & 1 deletion [email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/apple/swift-nio.git", from: "2.65.0"),
.package(url: "https://github.com/vapor/sqlite-nio.git", from: "1.8.4"),
.package(url: "https://github.com/vapor/sqlite-nio.git", from: "1.9.0"),
.package(url: "https://github.com/vapor/sql-kit.git", from: "3.29.3"),
.package(url: "https://github.com/vapor/async-kit.git", from: "1.19.0"),
],
Expand Down
2 changes: 1 addition & 1 deletion Sources/SQLiteKit/SQLiteDialect.swift
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import SQLKit

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

0 comments on commit 8d3abe7

Please sign in to comment.