@@ -83,7 +83,7 @@ process of downloading, compiling, and linking dependencies.
83
83
84
84
``` swift
85
85
dependencies: [
86
- .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.13.3 " )
86
+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.14.0 " )
87
87
]
88
88
```
89
89
@@ -104,7 +104,7 @@ install SQLite.swift with Carthage:
104
104
2 . Update your Cartfile to include the following:
105
105
106
106
``` ruby
107
- github " stephencelis/SQLite.swift" ~ > 0.13 . 3
107
+ github " stephencelis/SQLite.swift" ~ > 0.14 . 0
108
108
```
109
109
110
110
3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -134,7 +134,7 @@ install SQLite.swift with Carthage:
134
134
use_frameworks!
135
135
136
136
target 'YourAppTargetName' do
137
- pod 'SQLite.swift', '~> 0.13.3 '
137
+ pod 'SQLite.swift', '~> 0.14.0 '
138
138
end
139
139
` ` `
140
140
@@ -148,7 +148,7 @@ with the OS you can require the `standalone` subspec:
148
148
149
149
` ` ` ruby
150
150
target 'YourAppTargetName' do
151
- pod 'SQLite.swift/standalone', '~> 0.13.3 '
151
+ pod 'SQLite.swift/standalone', '~> 0.14.0 '
152
152
end
153
153
` ` `
154
154
@@ -158,7 +158,7 @@ dependency to sqlite3 or one of its subspecs:
158
158
159
159
` ` ` ruby
160
160
target 'YourAppTargetName' do
161
- pod 'SQLite.swift/standalone', '~> 0.13.3 '
161
+ pod 'SQLite.swift/standalone', '~> 0.14.0 '
162
162
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
163
163
end
164
164
` ` `
@@ -174,7 +174,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
174
174
target 'YourAppTargetName' do
175
175
# Make sure you only require the subspec, otherwise you app might link against
176
176
# the system SQLite, which means the SQLCipher-specific methods won't work.
177
- pod 'SQLite.swift/SQLCipher', '~> 0.13.3 '
177
+ pod 'SQLite.swift/SQLCipher', '~> 0.14.0 '
178
178
end
179
179
` ` `
180
180
0 commit comments