@@ -90,7 +90,7 @@ process of downloading, compiling, and linking dependencies.
9090
9191 ``` swift
9292 dependencies: [
93- .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.14.0 " )
93+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.14.1 " )
9494 ]
9595 ```
9696
@@ -111,7 +111,7 @@ install SQLite.swift with Carthage:
111111 2 . Update your Cartfile to include the following:
112112
113113 ``` ruby
114- github " stephencelis/SQLite.swift" ~ > 0.14 .0
114+ github " stephencelis/SQLite.swift" ~ > 0.14 .1
115115 ```
116116
117117 3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -141,7 +141,7 @@ install SQLite.swift with Carthage:
141141 use_frameworks!
142142
143143 target 'YourAppTargetName' do
144- pod 'SQLite.swift', '~> 0.14.0 '
144+ pod 'SQLite.swift', '~> 0.14.1 '
145145 end
146146 ` ` `
147147
@@ -155,7 +155,7 @@ with the OS you can require the `standalone` subspec:
155155
156156` ` ` ruby
157157target 'YourAppTargetName' do
158- pod 'SQLite.swift/standalone', '~> 0.14.0 '
158+ pod 'SQLite.swift/standalone', '~> 0.14.1 '
159159end
160160` ` `
161161
@@ -165,7 +165,7 @@ dependency to sqlite3 or one of its subspecs:
165165
166166` ` ` ruby
167167target 'YourAppTargetName' do
168- pod 'SQLite.swift/standalone', '~> 0.14.0 '
168+ pod 'SQLite.swift/standalone', '~> 0.14.1 '
169169 pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
170170end
171171` ` `
@@ -181,7 +181,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
181181target 'YourAppTargetName' do
182182 # Make sure you only require the subspec, otherwise you app might link against
183183 # the system SQLite, which means the SQLCipher-specific methods won't work.
184- pod 'SQLite.swift/SQLCipher', '~> 0.14.0 '
184+ pod 'SQLite.swift/SQLCipher', '~> 0.14.1 '
185185end
186186` ` `
187187
0 commit comments