Skip to content

Commit d732db0

Browse files
committed
Docs
1 parent 52889d8 commit d732db0

File tree

6 files changed

+23
-16
lines changed

6 files changed

+23
-16
lines changed

.gitmodules

Whitespace-only changes.

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0
1+
4.1

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

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ and the [companion repository][SQLiteDataAccessLayer2].
112112

113113
## Installation
114114

115-
> _Note:_ SQLite.swift requires Swift 4 (and [Xcode][] 9).
115+
> _Note:_ SQLite.swift requires Swift 4.1 (and [Xcode][] 9.3).
116116
117117
### Carthage
118118

@@ -124,7 +124,7 @@ install SQLite.swift with Carthage:
124124
2. Update your Cartfile to include the following:
125125

126126
```ruby
127-
github "stephencelis/SQLite.swift" ~> 0.11.4
127+
github "stephencelis/SQLite.swift" ~> 0.11.5
128128
```
129129

130130
3. Run `carthage update` and
@@ -156,7 +156,7 @@ SQLite.swift with CocoaPods:
156156
use_frameworks!
157157
158158
target 'YourAppTargetName' do
159-
pod 'SQLite.swift', '~> 0.11.4'
159+
pod 'SQLite.swift', '~> 0.11.5'
160160
end
161161
```
162162

@@ -174,7 +174,7 @@ Swift code.
174174

175175
```swift
176176
dependencies: [
177-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.11.4")
177+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.11.5")
178178
]
179179
```
180180

@@ -285,7 +285,7 @@ Looking for something else? Try another Swift wrapper (or [FMDB][]):
285285
[GitterBadge]: https://badges.gitter.im/stephencelis/SQLite.swift.svg
286286
[GitterLink]: https://gitter.im/stephencelis/SQLite.swift
287287

288-
[Swift4Badge]: https://img.shields.io/badge/swift-4-orange.svg?style=flat
288+
[Swift4Badge]: https://img.shields.io/badge/swift-4.1-orange.svg?style=flat
289289
[Swift4Link]: https://developer.apple.com/swift/
290290

291291
[SQLiteMigrationManager.swift]: https://github.com/garriguv/SQLiteMigrationManager.swift

SQLite.swift.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SQLite.swift"
3-
s.version = "0.11.4"
3+
s.version = "0.11.5"
44
s.summary = "A type-safe, Swift-language layer over SQLite3 for iOS and OS X."
55

66
s.description = <<-DESC
@@ -21,7 +21,7 @@ Pod::Spec.new do |s|
2121
s.watchos.deployment_target = "2.2"
2222
s.default_subspec = 'standard'
2323
s.pod_target_xcconfig = {
24-
'SWIFT_VERSION' => '4.0',
24+
'SWIFT_VERSION' => '4.1',
2525
}
2626

2727
s.subspec 'standard' do |ss|

0 commit comments

Comments
 (0)