@@ -108,7 +108,7 @@ process of downloading, compiling, and linking dependencies.
108
108
109
109
``` swift
110
110
dependencies: [
111
- .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.15.0 " )
111
+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.15.1 " )
112
112
]
113
113
```
114
114
@@ -129,7 +129,7 @@ install SQLite.swift with Carthage:
129
129
2 . Update your Cartfile to include the following:
130
130
131
131
``` ruby
132
- github " stephencelis/SQLite.swift" ~ > 0.15 .0
132
+ github " stephencelis/SQLite.swift" ~ > 0.15 .1
133
133
```
134
134
135
135
3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -159,7 +159,7 @@ install SQLite.swift with Carthage:
159
159
use_frameworks!
160
160
161
161
target 'YourAppTargetName' do
162
- pod 'SQLite.swift', '~> 0.15.0 '
162
+ pod 'SQLite.swift', '~> 0.15.1 '
163
163
end
164
164
` ` `
165
165
@@ -173,7 +173,7 @@ with the OS you can require the `standalone` subspec:
173
173
174
174
` ` ` ruby
175
175
target 'YourAppTargetName' do
176
- pod 'SQLite.swift/standalone', '~> 0.15.0 '
176
+ pod 'SQLite.swift/standalone', '~> 0.15.1 '
177
177
end
178
178
` ` `
179
179
@@ -183,7 +183,7 @@ dependency to sqlite3 or one of its subspecs:
183
183
184
184
` ` ` ruby
185
185
target 'YourAppTargetName' do
186
- pod 'SQLite.swift/standalone', '~> 0.15.0 '
186
+ pod 'SQLite.swift/standalone', '~> 0.15.1 '
187
187
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
188
188
end
189
189
` ` `
@@ -199,7 +199,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
199
199
target 'YourAppTargetName' do
200
200
# Make sure you only require the subspec, otherwise you app might link against
201
201
# the system SQLite, which means the SQLCipher-specific methods won't work.
202
- pod 'SQLite.swift/SQLCipher', '~> 0.15.0 '
202
+ pod 'SQLite.swift/SQLCipher', '~> 0.15.1 '
203
203
end
204
204
` ` `
205
205
0 commit comments