@@ -109,7 +109,7 @@ process of downloading, compiling, and linking dependencies.
109109
110110 ``` swift
111111 dependencies: [
112- .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.15.4 " )
112+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.15.5 " )
113113 ]
114114 ```
115115
@@ -127,19 +127,19 @@ SQLite.swift for different use cases.
127127 ``` swift
128128 dependencies: [
129129 .package (url : " https://github.com/stephencelis/SQLite.swift.git" ,
130- from : " 0.15.4 " ,
130+ from : " 0.15.5 " ,
131131 traits : [" XXX" ])
132132 ]
133133 ```
134134
135- | Trait | Description |
136- | --------------------------| -----------------------------------------------------|
137- | ` SystemSQLite ` (default) | Uses the system SQLite (provided by Apple) |
138- | ` SwiftToolchainCSQLite ` | Embeds the SQLite provided by [ swift-toolchain] [ ] |
139- | ` SQLiteSwiftCSQLite ` | Embeds a [ custom SQLite] [ ] based on swift-toolchain |
140- | ` StandaloneSQLite ` | Only used by CocoaPods |
141- | ` SQLCipher ` | Embeds [ SQLCipher] [ ] (see below) |
142- | ` FTS5 ` | Enables FTS5, only works with ` SQLiteSwiftCSQLite ` |
135+ | Trait | Description | SQLite version |
136+ | --------------------------| -----------------------------------------------------| -------------------------------------- |
137+ | ` SystemSQLite ` (default) | Uses the system SQLite (provided by Apple) | macOS 15.7.x: ` 3.43.2 ` , 26: ` 3.50.2 ` |
138+ | ` SwiftToolchainCSQLite ` | Embeds the SQLite provided by [ swift-toolchain] [ ] | 1.0.7: ` 3.50.4 ` |
139+ | ` SQLiteSwiftCSQLite ` | Embeds a [ custom SQLite] [ ] based on swift-toolchain | ` 3.50.4 ` |
140+ | ` StandaloneSQLite ` | Only used by CocoaPods | |
141+ | ` SQLCipher ` | Embeds [ SQLCipher] [ ] (see below) | 4.13.0: ` 3.51.2 ` |
142+ | ` FTS5 ` | Enables FTS5, only works with ` SQLiteSwiftCSQLite ` | |
143143
144144[ traits ] : https://docs.swift.org/swiftpm/documentation/packagemanagerdocs/packagetraits/
145145[ custom SQLite ] : https://github.com/stephencelis/CSQLite/tree/SQLite.swift
@@ -151,7 +151,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can specify the `SQLCiphe
151151
152152``` swift
153153depdencies: [
154- .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.15.4 " , traits : [" SQLCipher" ])
154+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.15.5 " , traits : [" SQLCipher" ])
155155]
156156```
157157
@@ -181,7 +181,7 @@ let package = Package(
181181 dependencies : [
182182 .package (
183183 url : " https://github.com/stephencelis/SQLite.swift.git" ,
184- from : " 0.15.4 " ,
184+ from : " 0.15.5 " ,
185185 traits : [" SQLCipher" ])
186186 ],
187187 targets : [
@@ -228,7 +228,7 @@ install SQLite.swift with Carthage:
228228 2 . Update your Cartfile to include the following:
229229
230230 ``` ruby
231- github " stephencelis/SQLite.swift" ~ > 0.15 .4
231+ github " stephencelis/SQLite.swift" ~ > 0.15 .5
232232 ```
233233
234234 3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -258,7 +258,7 @@ install SQLite.swift with Carthage:
258258 use_frameworks!
259259
260260 target 'YourAppTargetName' do
261- pod 'SQLite.swift', '~> 0.15.4 '
261+ pod 'SQLite.swift', '~> 0.15.5 '
262262 end
263263 ` ` `
264264
@@ -272,7 +272,7 @@ with the OS you can require the `standalone` subspec:
272272
273273` ` ` ruby
274274target 'YourAppTargetName' do
275- pod 'SQLite.swift/standalone', '~> 0.15.4 '
275+ pod 'SQLite.swift/standalone', '~> 0.15.5 '
276276end
277277` ` `
278278
@@ -282,7 +282,7 @@ dependency to sqlite3 or one of its subspecs:
282282
283283` ` ` ruby
284284target 'YourAppTargetName' do
285- pod 'SQLite.swift/standalone', '~> 0.15.4 '
285+ pod 'SQLite.swift/standalone', '~> 0.15.5 '
286286 pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
287287end
288288` ` `
0 commit comments