@@ -108,7 +108,7 @@ process of downloading, compiling, and linking dependencies.
108108
109109 ``` swift
110110 dependencies: [
111- .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.15.2 " )
111+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.15.3 " )
112112 ]
113113 ```
114114
@@ -129,7 +129,7 @@ install SQLite.swift with Carthage:
129129 2 . Update your Cartfile to include the following:
130130
131131 ``` ruby
132- github " stephencelis/SQLite.swift" ~ > 0.15 .2
132+ github " stephencelis/SQLite.swift" ~ > 0.15 .3
133133 ```
134134
135135 3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -159,7 +159,7 @@ install SQLite.swift with Carthage:
159159 use_frameworks!
160160
161161 target 'YourAppTargetName' do
162- pod 'SQLite.swift', '~> 0.15.2 '
162+ pod 'SQLite.swift', '~> 0.15.3 '
163163 end
164164 ` ` `
165165
@@ -173,7 +173,7 @@ with the OS you can require the `standalone` subspec:
173173
174174` ` ` ruby
175175target 'YourAppTargetName' do
176- pod 'SQLite.swift/standalone', '~> 0.15.2 '
176+ pod 'SQLite.swift/standalone', '~> 0.15.3 '
177177end
178178` ` `
179179
@@ -183,7 +183,7 @@ dependency to sqlite3 or one of its subspecs:
183183
184184` ` ` ruby
185185target 'YourAppTargetName' do
186- pod 'SQLite.swift/standalone', '~> 0.15.2 '
186+ pod 'SQLite.swift/standalone', '~> 0.15.3 '
187187 pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
188188end
189189` ` `
@@ -199,7 +199,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
199199target 'YourAppTargetName' do
200200 # Make sure you only require the subspec, otherwise you app might link against
201201 # the system SQLite, which means the SQLCipher-specific methods won't work.
202- pod 'SQLite.swift/SQLCipher', '~> 0.15.2 '
202+ pod 'SQLite.swift/SQLCipher', '~> 0.15.3 '
203203end
204204` ` `
205205
0 commit comments