@@ -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 : [
@@ -233,7 +233,7 @@ install SQLite.swift with Carthage:
233233 2 . Update your Cartfile to include the following:
234234
235235 ``` ruby
236- github " stephencelis/SQLite.swift" ~ > 0.15 . 6
236+ github " stephencelis/SQLite.swift" ~ > 0.16 . 0
237237 ```
238238
239239 3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -263,7 +263,7 @@ install SQLite.swift with Carthage:
263263 use_frameworks!
264264
265265 target 'YourAppTargetName' do
266- pod 'SQLite.swift', '~> 0.15.6 '
266+ pod 'SQLite.swift', '~> 0.16.0 '
267267 end
268268 ` ` `
269269
@@ -277,7 +277,7 @@ with the OS you can require the `standalone` subspec:
277277
278278` ` ` ruby
279279target 'YourAppTargetName' do
280- pod 'SQLite.swift/standalone', '~> 0.15.6 '
280+ pod 'SQLite.swift/standalone', '~> 0.16.0 '
281281end
282282` ` `
283283
@@ -287,7 +287,7 @@ dependency to sqlite3 or one of its subspecs:
287287
288288` ` ` ruby
289289target 'YourAppTargetName' do
290- pod 'SQLite.swift/standalone', '~> 0.15.6 '
290+ pod 'SQLite.swift/standalone', '~> 0.16.0 '
291291 pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
292292end
293293` ` `
0 commit comments