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