You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Documentation/Index.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,7 +78,7 @@ install SQLite.swift with Carthage:
78
78
2. Update your Cartfile to include the following:
79
79
80
80
```
81
-
github "stephencelis/SQLite.swift" ~> 0.11.1
81
+
github "stephencelis/SQLite.swift" ~> 0.11.2
82
82
```
83
83
84
84
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -113,7 +113,7 @@ install SQLite.swift with Carthage:
113
113
use_frameworks!
114
114
115
115
target 'YourAppTargetName' do
116
-
pod 'SQLite.swift', '~> 0.11.1'
116
+
pod 'SQLite.swift', '~> 0.11.2'
117
117
end
118
118
```
119
119
@@ -126,15 +126,15 @@ install SQLite.swift with Carthage:
126
126
127
127
``` ruby
128
128
target 'YourAppTargetName' do
129
-
pod 'SQLite.swift/standalone', '~> 0.11.1'
129
+
pod 'SQLite.swift/standalone', '~> 0.11.2'
130
130
end
131
131
```
132
132
133
133
By default this will use the most recent version of SQLite without any extras. If you want you can further customize this by adding another dependency to sqlite3 or one of its subspecs:
134
134
135
135
```ruby
136
136
target 'YourAppTargetName'do
137
-
pod 'SQLite.swift/standalone', '~> 0.11.1'
137
+
pod 'SQLite.swift/standalone', '~> 0.11.2'
138
138
pod 'sqlite3/fts5', '= 3.15.0'# SQLite 3.15.0 with FTS5 enabled
0 commit comments