@@ -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.5 " )
112+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.15.6 " )
113113 ]
114114 ```
115115
@@ -127,7 +127,7 @@ SQLite.swift for different use cases.
127127 ``` swift
128128 dependencies: [
129129 .package (url : " https://github.com/stephencelis/SQLite.swift.git" ,
130- from : " 0.15.5 " ,
130+ from : " 0.15.6 " ,
131131 traits : [" XXX" ])
132132 ]
133133 ```
@@ -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.5 " , traits : [" SQLCipher" ])
154+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.15.6 " , 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.5 " ,
184+ from : " 0.15.6 " ,
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 .5
231+ github " stephencelis/SQLite.swift" ~ > 0.15 .6
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.5 '
261+ pod 'SQLite.swift', '~> 0.15.6 '
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.5 '
275+ pod 'SQLite.swift/standalone', '~> 0.15.6 '
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.5 '
285+ pod 'SQLite.swift/standalone', '~> 0.15.6 '
286286 pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
287287end
288288` ` `
0 commit comments