diff --git a/README.md b/README.md index 9af091ce..85c3877e 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@ It's like [Netty](https://netty.io), but written for Swift. ### Repository organization -The SwiftNIO project is split across multiple repositories +The SwiftNIO project is split across multiple repositories: -Repository | Swift 5 | Swift 4 +Repository | NIO 2 (Swift 5) | NIO 1 (Swift 4+) --- | --- | --- [https://github.com/apple/swift-nio][repo-nio]
SwiftNIO core | `from: "2.0.0"` | `from: "1.0.0"` [https://github.com/apple/swift-nio-ssl][repo-nio-ssl]
TLS (SSL) support | `from: "2.0.0"` | `from: "1.0.0"` @@ -32,7 +32,7 @@ The latest released SwiftNIO 1 versionĀ supports Swift 4.0, 4.1, 4.2, and 5.0. #### SwiftNIO 2 -The latest released SwiftNIO 2 versionĀ supports Swift 5.0. If you have a SwiftNIO 1 application or library that you would like to migrate to SwiftNIO 2, please check out the [migration guide](docs/migration-guide-NIO1-to-NIO2.md) we prepared for you. +The latest released SwiftNIO 2 versionĀ supports only Swift 5.0. If you have a SwiftNIO 1 application or library that you would like to migrate to SwiftNIO 2, please check out the [migration guide](docs/migration-guide-NIO1-to-NIO2.md) we prepared for you. ### Compatibility diff --git a/docs/migration-guide-NIO1-to-NIO2.md b/docs/migration-guide-NIO1-to-NIO2.md index 7546c98e..c4781276 100644 --- a/docs/migration-guide-NIO1-to-NIO2.md +++ b/docs/migration-guide-NIO1-to-NIO2.md @@ -16,7 +16,7 @@ Update the NIO packages you use to include the following versions. - `swift-nio`: `.package(url: "https://github.com/apple/swift-nio.git", from: "2.0.0")` - `swift-nio-ssl`: `.package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.0.0")` -- `swift-nio-extras`: `.package(url: "https://github.com/apple/swift-nio.git", from: "1.0.0")` +- `swift-nio-extras`: `.package(url: "https://github.com/apple/swift-nio-extras.git", from: "1.0.0")` - `swift-nio-http2`: `.package(url: "https://github.com/apple/swift-nio-http2.git", from: "1.0.0")` - `swift-nio-transport-services`: `.package(url: "https://github.com/apple/swift-nio-transport-services.git", from: "1.0.0")`