Skip to content

Commit 8c730e1

Browse files
committed
Update docs
1 parent 194d348 commit 8c730e1

File tree

2 files changed

+15
-8
lines changed

2 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
0.11.5 (04-14-2018), [diff][diff-0.11.5]
2+
========================================
3+
4+
* Swift 4.1 ([#797][])
5+
16
0.11.4 (30-09-2017), [diff][diff-0.11.4]
27
========================================
38

@@ -51,6 +56,7 @@
5156
[diff-0.11.2]: https://github.com/stephencelis/SQLite.swift/compare/0.11.1...0.11.2
5257
[diff-0.11.3]: https://github.com/stephencelis/SQLite.swift/compare/0.11.2...0.11.3
5358
[diff-0.11.4]: https://github.com/stephencelis/SQLite.swift/compare/0.11.3...0.11.4
59+
[diff-0.11.5]: https://github.com/stephencelis/SQLite.swift/compare/0.11.4...0.11.5
5460

5561
[#142]: https://github.com/stephencelis/SQLite.swift/issues/142
5662
[#315]: https://github.com/stephencelis/SQLite.swift/issues/315
@@ -81,3 +87,4 @@
8187
[#723]: https://github.com/stephencelis/SQLite.swift/pull/723
8288
[#733]: https://github.com/stephencelis/SQLite.swift/pull/733
8389
[#726]: https://github.com/stephencelis/SQLite.swift/pull/726
90+
[#797]: https://github.com/stephencelis/SQLite.swift/pull/797

Documentation/Index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@
6767

6868
## Installation
6969

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.
7272
7373

7474
### Carthage
@@ -80,7 +80,7 @@ install SQLite.swift with Carthage:
8080
2. Update your Cartfile to include the following:
8181

8282
```ruby
83-
github "stephencelis/SQLite.swift" ~> 0.11.4
83+
github "stephencelis/SQLite.swift" ~> 0.11.5
8484
```
8585

8686
3. Run `carthage update` and [add the appropriate framework][Carthage Usage].
@@ -110,7 +110,7 @@ install SQLite.swift with Carthage:
110110
use_frameworks!
111111
112112
target 'YourAppTargetName' do
113-
pod 'SQLite.swift', '~> 0.11.4'
113+
pod 'SQLite.swift', '~> 0.11.5'
114114
end
115115
```
116116

@@ -124,7 +124,7 @@ with the OS you can require the `standalone` subspec:
124124

125125
```ruby
126126
target 'YourAppTargetName' do
127-
pod 'SQLite.swift/standalone', '~> 0.11.4'
127+
pod 'SQLite.swift/standalone', '~> 0.11.5'
128128
end
129129
```
130130

@@ -134,7 +134,7 @@ dependency to sqlite3 or one of its subspecs:
134134

135135
```ruby
136136
target 'YourAppTargetName' do
137-
pod 'SQLite.swift/standalone', '~> 0.11.4'
137+
pod 'SQLite.swift/standalone', '~> 0.11.5'
138138
pod 'sqlite3/fts5', '= 3.15.0' # SQLite 3.15.0 with FTS5 enabled
139139
end
140140
```
@@ -148,7 +148,7 @@ If you want to use [SQLCipher][] with SQLite.swift you can require the
148148

149149
```ruby
150150
target 'YourAppTargetName' do
151-
pod 'SQLite.swift/SQLCipher', '~> 0.11.4'
151+
pod 'SQLite.swift/SQLCipher', '~> 0.11.5'
152152
end
153153
```
154154

@@ -181,7 +181,7 @@ applications.
181181

182182
```swift
183183
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")
185185
]
186186
```
187187

0 commit comments

Comments
 (0)