@@ -90,7 +90,7 @@ process of downloading, compiling, and linking dependencies.
90
90
91
91
``` swift
92
92
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 " )
94
94
]
95
95
```
96
96
@@ -111,7 +111,7 @@ install SQLite.swift with Carthage:
111
111
2 . Update your Cartfile to include the following:
112
112
113
113
``` ruby
114
- github " stephencelis/SQLite.swift" ~ > 0.14 .0
114
+ github " stephencelis/SQLite.swift" ~ > 0.14 .1
115
115
```
116
116
117
117
3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -141,7 +141,7 @@ install SQLite.swift with Carthage:
141
141
use_frameworks!
142
142
143
143
target 'YourAppTargetName' do
144
- pod 'SQLite.swift', '~> 0.14.0 '
144
+ pod 'SQLite.swift', '~> 0.14.1 '
145
145
end
146
146
` ` `
147
147
@@ -155,7 +155,7 @@ with the OS you can require the `standalone` subspec:
155
155
156
156
` ` ` ruby
157
157
target 'YourAppTargetName' do
158
- pod 'SQLite.swift/standalone', '~> 0.14.0 '
158
+ pod 'SQLite.swift/standalone', '~> 0.14.1 '
159
159
end
160
160
` ` `
161
161
@@ -165,7 +165,7 @@ dependency to sqlite3 or one of its subspecs:
165
165
166
166
` ` ` ruby
167
167
target 'YourAppTargetName' do
168
- pod 'SQLite.swift/standalone', '~> 0.14.0 '
168
+ pod 'SQLite.swift/standalone', '~> 0.14.1 '
169
169
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
170
170
end
171
171
` ` `
@@ -181,7 +181,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
181
181
target 'YourAppTargetName' do
182
182
# Make sure you only require the subspec, otherwise you app might link against
183
183
# 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 '
185
185
end
186
186
` ` `
187
187
0 commit comments