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
+4-4Lines changed: 4 additions & 4 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.10.1
81
+
github "stephencelis/SQLite.swift" ~> 0.11.0
82
82
```
83
83
84
84
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -106,7 +106,7 @@ install SQLite.swift with Carthage:
106
106
``` ruby
107
107
use_frameworks!
108
108
109
-
pod 'SQLite.swift', '~> 0.10.1'
109
+
pod 'SQLite.swift', '~> 0.11.0'
110
110
```
111
111
112
112
3. Run `pod install`.
@@ -116,13 +116,13 @@ install SQLite.swift with Carthage:
116
116
If you want to use a more recent version of SQLite than what is provided with the OS you can require the `standalone` subspec:
117
117
118
118
``` ruby
119
-
pod 'SQLite.swift/standalone', '~> 0.10.1'
119
+
pod 'SQLite.swift/standalone', '~> 0.11.0'
120
120
```
121
121
122
122
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:
123
123
124
124
```ruby
125
-
pod 'SQLite.swift/standalone', '~> 0.10.1'
125
+
pod 'SQLite.swift/standalone', '~> 0.11.0'
126
126
pod 'sqlite3/fts5', '= 3.11.1'# SQLite 3.11.1 with FTS5 enabled
0 commit comments