@@ -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.6 " )
112+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.16.0 " )
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.6 " ,
130+ from : " 0.16.0 " ,
131131 traits : [" XXX" ])
132132 ]
133133 ```
@@ -150,7 +150,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can specify the `SQLCiphe
150150
151151``` swift
152152depdencies: [
153- .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.15.6 " , traits : [" SQLCipher" ])
153+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.16.0 " , traits : [" SQLCipher" ])
154154]
155155```
156156
@@ -180,7 +180,7 @@ let package = Package(
180180 dependencies : [
181181 .package (
182182 url : " https://github.com/stephencelis/SQLite.swift.git" ,
183- from : " 0.15.6 " ,
183+ from : " 0.16.0 " ,
184184 traits : [" SQLCipher" ])
185185 ],
186186 targets : [
@@ -227,7 +227,7 @@ install SQLite.swift with Carthage:
227227 2 . Update your Cartfile to include the following:
228228
229229 ``` ruby
230- github " stephencelis/SQLite.swift" ~ > 0.15 . 6
230+ github " stephencelis/SQLite.swift" ~ > 0.16 . 0
231231 ```
232232
233233 3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -257,7 +257,7 @@ install SQLite.swift with Carthage:
257257 use_frameworks!
258258
259259 target 'YourAppTargetName' do
260- pod 'SQLite.swift', '~> 0.15.6 '
260+ pod 'SQLite.swift', '~> 0.16.0 '
261261 end
262262 ` ` `
263263
@@ -271,7 +271,7 @@ with the OS you can require the `standalone` subspec:
271271
272272` ` ` ruby
273273target 'YourAppTargetName' do
274- pod 'SQLite.swift/standalone', '~> 0.15.6 '
274+ pod 'SQLite.swift/standalone', '~> 0.16.0 '
275275end
276276` ` `
277277
@@ -281,7 +281,7 @@ dependency to sqlite3 or one of its subspecs:
281281
282282` ` ` ruby
283283target 'YourAppTargetName' do
284- pod 'SQLite.swift/standalone', '~> 0.15.6 '
284+ pod 'SQLite.swift/standalone', '~> 0.16.0 '
285285 pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
286286end
287287` ` `
0 commit comments