Skip to content

Commit fe0a5ee

Browse files
committed
Update readme
1 parent b39a811 commit fe0a5ee

1 file changed

Lines changed: 10 additions & 3 deletions

File tree

README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SortedArray
22

3-
A sorted array type for Swift 3.1+ and 4.0+.
3+
A sorted array type for Swift 4.0+.
44

55
Provides the `SortedArray` type, an array that keeps its elements sorted according to a given sort predicate.
66

@@ -14,7 +14,14 @@ For more info, see the [GitHub repo](https://github.com/ole/SortedArray) and my
1414

1515
## Supported Platforms
1616

17-
Supports Swift versions 3.1, 3.2, and 4.0. Not compatible with Swift 3.0. The last version compatible with Swift 3.0 is v0.4.
17+
The current release supports Swift 4.0 and up.
18+
19+
If you need support for older Swift version, here's a list of the latest releases that support specific Swift versions:
20+
21+
| Swift version | Latest SortedArray release |
22+
| 4.x | master |
23+
| 3.x | [0.6.0](https://github.com/ole/SortedArray/releases/tag/0.6.0) |
24+
| 3.0 | [0.4](https://github.com/ole/SortedArray/releases/tag/0.4.0) |
1825

1926
Since the code has no dependencies other than the Swift standard library (it doesn't even use Foundation), it should work on all platforms where Swift is available.
2027

@@ -43,7 +50,7 @@ let package = Package(
4350
Add this to your `Cartfile`:
4451

4552
```
46-
github "ole/SortedArray" ~> 0.3
53+
github "ole/SortedArray" ~> 0.7
4754
```
4855

4956
Integration via Carthage should work for macOS, iOS, tvOS, and watchOS targets.

0 commit comments

Comments
 (0)