Skip to content

Commit

Permalink
change swift-tools to 5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
nerzh committed Mar 25, 2020
1 parent 3d73cd4 commit 5aa1d64
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
// swift-tools-version:5.1
// The swift-tools-version declares the minimum version of Swift required to build this package.

// swift-tools-version:5.2
import PackageDescription

let package = Package(
name: "ActionCableSwift",
platforms: [
.macOS(.v10_13),
],
products: [
.library(
name: "ActionCableSwift",
targets: ["ActionCableSwift"]),
],
dependencies: [
.package(url: "https://github.com/nerzh/swift-extensions-pack.git", from: "0.2.6"),
.package(name: "SwiftExtensionsPack",
url: "https://github.com/nerzh/swift-extensions-pack.git", from: "0.2.6"),
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Tests/ActionCableSwiftTests/ActionCableSwiftTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ final class ActionCableSwiftTests: XCTestCase {
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct
// results.
XCTAssertEqual(ActionCableSwift().text, "Hello, World!")
// XCTAssertEqual(ActionCableSwift().text, "Hello, World!")
}

static var allTests = [
Expand Down

0 comments on commit 5aa1d64

Please sign in to comment.