67
67
68
68
## Installation
69
69
70
- > _ Note:_ SQLite.swift requires Swift 4 (and
71
- > [ Xcode 9] ( https://developer.apple.com/xcode/downloads/ ) ) or greater.
70
+ > _ Note:_ SQLite.swift requires Swift 4.1 (and
71
+ > [ Xcode 9.3 ] ( https://developer.apple.com/xcode/downloads/ ) ) or greater.
72
72
73
73
74
74
### Carthage
@@ -80,7 +80,7 @@ install SQLite.swift with Carthage:
80
80
2 . Update your Cartfile to include the following:
81
81
82
82
``` ruby
83
- github " stephencelis/SQLite.swift" ~ > 0.11 .4
83
+ github " stephencelis/SQLite.swift" ~ > 0.11 .5
84
84
```
85
85
86
86
3 . Run ` carthage update` and [add the appropriate framework][Carthage Usage ].
@@ -110,7 +110,7 @@ install SQLite.swift with Carthage:
110
110
use_frameworks!
111
111
112
112
target 'YourAppTargetName' do
113
- pod 'SQLite.swift', '~> 0.11.4 '
113
+ pod 'SQLite.swift', '~> 0.11.5 '
114
114
end
115
115
` ` `
116
116
@@ -124,7 +124,7 @@ with the OS you can require the `standalone` subspec:
124
124
125
125
` ` ` ruby
126
126
target 'YourAppTargetName' do
127
- pod 'SQLite.swift/standalone', '~> 0.11.4 '
127
+ pod 'SQLite.swift/standalone', '~> 0.11.5 '
128
128
end
129
129
` ` `
130
130
@@ -134,7 +134,7 @@ 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.4 '
137
+ pod 'SQLite.swift/standalone', '~> 0.11.5 '
138
138
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
139
139
end
140
140
` ` `
@@ -148,7 +148,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
148
148
149
149
` ` ` ruby
150
150
target 'YourAppTargetName' do
151
- pod 'SQLite.swift/SQLCipher', '~> 0.11.4 '
151
+ pod 'SQLite.swift/SQLCipher', '~> 0.11.5 '
152
152
end
153
153
` ` `
154
154
@@ -181,7 +181,7 @@ applications.
181
181
182
182
` ` ` swift
183
183
dependencies: [
184
- .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.11.4 ")
184
+ .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.11.5 ")
185
185
]
186
186
` ` `
187
187
0 commit comments