Browse Source

Update to release versions of Swift 5 and NIO (#414)

George Barnett 6 years ago
parent
commit
82ee4ceaf2
3 changed files with 10 additions and 10 deletions
  1. 1 1
      .travis-install.sh
  2. 6 6
      Package.resolved
  3. 3 3
      Package.swift

+ 1 - 1
.travis-install.sh

@@ -32,7 +32,7 @@ if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
   PROTOC_URL=https://github.com/google/protobuf/releases/download/v3.5.1/protoc-3.5.1-osx-x86_64.zip
 else
   # Install swift
-  SWIFT_URL=https://swift.org/builds/swift-5.0-branch/ubuntu1404/swift-5.0-DEVELOPMENT-SNAPSHOT-2019-03-10-a/swift-5.0-DEVELOPMENT-SNAPSHOT-2019-03-10-a-ubuntu14.04.tar.gz
+  SWIFT_URL=https://swift.org/builds/swift-5.0-release/ubuntu1404/swift-5.0-RELEASE/swift-5.0-RELEASE-ubuntu14.04.tar.gz
   echo $SWIFT_URL
   curl -fSsL $SWIFT_URL -o swift.tar.gz
   tar -xzf swift.tar.gz --strip-components=2 --directory=local

+ 6 - 6
Package.resolved

@@ -24,8 +24,8 @@
         "repositoryURL": "https://github.com/apple/swift-nio.git",
         "state": {
           "branch": null,
-          "revision": "35ed9ff754493f7ebe6f0795c59c34c58696c3ea",
-          "version": "2.0.0-convergence.2"
+          "revision": "b8368b6e09b7993896c42a6199103a73ecc1dbf9",
+          "version": "2.0.0"
         }
       },
       {
@@ -33,8 +33,8 @@
         "repositoryURL": "https://github.com/apple/swift-nio-http2.git",
         "state": {
           "branch": null,
-          "revision": "d9f11317499f008ddebfef2d44fcc62ba1b49410",
-          "version": "1.0.0-convergence.1"
+          "revision": "a9fc7c17dda4cd72ae9ec5848d1c30b230f2b1ed",
+          "version": "1.0.0"
         }
       },
       {
@@ -42,8 +42,8 @@
         "repositoryURL": "https://github.com/apple/swift-nio-ssl.git",
         "state": {
           "branch": null,
-          "revision": "5995ce5eac7b8e9fa65f4871c0173ffc54e26db7",
-          "version": "2.0.0-convergence.1"
+          "revision": "a41d0643866c5128ef0d5b2f14368db820312380",
+          "version": "2.0.0"
         }
       },
       {

+ 3 - 3
Package.swift

@@ -28,11 +28,11 @@ var packageDependencies: [Package.Dependency] = [
   // Transitive dependencies
   .package(url: "https://github.com/apple/swift-nio-zlib-support.git", .upToNextMajor(from: "1.0.0")),
   // Main SwiftNIO package
-  .package(url: "https://github.com/apple/swift-nio.git", from: "2.0.0-convergence.1"),
+  .package(url: "https://github.com/apple/swift-nio.git", from: "2.0.0"),
   // HTTP2 via SwiftNIO
-  .package(url: "https://github.com/apple/swift-nio-http2.git", from: "1.0.0-convergence.1"),
+  .package(url: "https://github.com/apple/swift-nio-http2.git", from: "1.0.0"),
   // TLS via SwiftNIO
-  .package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.0.0-convergence.1"),
+  .package(url: "https://github.com/apple/swift-nio-ssl.git", from: "2.0.0"),
 ]
 
 var cGRPCDependencies: [Target.Dependency] = []