Skip to content

Commit aa98218

Browse files
committed
Documentation
- Updated README to clarify Swift 5 vs Swift 4.2 supported versions - Updated minimum CocoaPods version - Updated SPM language versions
1 parent c0b9eb0 commit aa98218

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Documentation/Index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ install SQLite.swift with Carthage:
9696
[CocoaPods][] is a dependency manager for Cocoa projects. To install SQLite.swift with CocoaPods:
9797

9898
1. Make sure CocoaPods is [installed][CocoaPods Installation] (SQLite.swift
99-
requires version 1.0.0 or greater).
99+
requires version 1.6.1 or greater).
100100

101101
```sh
102102
# Using the default Ruby install will require you to use sudo when

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ let package = Package(
99
.target(name: "SQLiteObjc"),
1010
.testTarget(name: "SQLiteTests", dependencies: ["SQLite"], path: "Tests/SQLiteTests")
1111
],
12-
swiftLanguageVersions: [4]
12+
swiftLanguageVersions: [5]
1313
)
1414

1515
#if os(Linux)

README.md

Lines changed: 4 additions & 4 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 5 (and [Xcode][] 10.2).
115+
> _Note:_ Version 0.12 requires Swift 5 (and [Xcode][] 10.2). \nVersion 0.11.6 requires Swift 4.2 (and [Xcode][] 10.1).
116116
117117
### Carthage
118118

@@ -142,7 +142,7 @@ install SQLite.swift with Carthage:
142142
SQLite.swift with CocoaPods:
143143

144144
1. Make sure CocoaPods is [installed][CocoaPods Installation]. (SQLite.swift
145-
requires version 1.0.0 or greater.)
145+
requires version 1.6.1 or greater.)
146146

147147
```sh
148148
# Using the default Ruby install will require you to use sudo when
@@ -285,8 +285,8 @@ 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-5-orange.svg?style=flat
289-
[Swift4Link]: https://developer.apple.com/swift/
288+
[Swift5Badge]: https://img.shields.io/badge/swift-5-orange.svg?style=flat
289+
[Swift5Link]: https://developer.apple.com/swift/
290290

291291
[SQLiteMigrationManager.swift]: https://github.com/garriguv/SQLiteMigrationManager.swift
292292
[FMDB]: https://github.com/ccgus/fmdb

0 commit comments

Comments
 (0)