@@ -84,7 +84,7 @@ applications.
84
84
85
85
``` swift
86
86
dependencies: [
87
- .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.12 .0" )
87
+ .package (url : " https://github.com/stephencelis/SQLite.swift.git" , from : " 0.13 .0" )
88
88
]
89
89
```
90
90
@@ -105,7 +105,7 @@ install SQLite.swift with Carthage:
105
105
2 . Update your Cartfile to include the following:
106
106
107
107
``` ruby
108
- github " stephencelis/SQLite.swift" ~ > 0.12 .0
108
+ github " stephencelis/SQLite.swift" ~ > 0.13 .0
109
109
```
110
110
111
111
3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -135,7 +135,7 @@ install SQLite.swift with Carthage:
135
135
use_frameworks!
136
136
137
137
target 'YourAppTargetName' do
138
- pod 'SQLite.swift', '~> 0.12 .0'
138
+ pod 'SQLite.swift', '~> 0.13 .0'
139
139
end
140
140
` ` `
141
141
@@ -149,7 +149,7 @@ with the OS you can require the `standalone` subspec:
149
149
150
150
` ` ` ruby
151
151
target 'YourAppTargetName' do
152
- pod 'SQLite.swift/standalone', '~> 0.12 .0'
152
+ pod 'SQLite.swift/standalone', '~> 0.13 .0'
153
153
end
154
154
` ` `
155
155
@@ -159,7 +159,7 @@ dependency to sqlite3 or one of its subspecs:
159
159
160
160
` ` ` ruby
161
161
target 'YourAppTargetName' do
162
- pod 'SQLite.swift/standalone', '~> 0.12 .0'
162
+ pod 'SQLite.swift/standalone', '~> 0.13 .0'
163
163
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
164
164
end
165
165
` ` `
@@ -173,7 +173,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
173
173
174
174
` ` ` ruby
175
175
target 'YourAppTargetName' do
176
- pod 'SQLite.swift/SQLCipher', '~> 0.12 .0'
176
+ pod 'SQLite.swift/SQLCipher', '~> 0.13 .0'
177
177
end
178
178
` ` `
179
179
0 commit comments