Skip to content
This repository was archived by the owner on Mar 1, 2020. It is now read-only.

Commit e5dadb6

Browse files
committed
refactor: switch to swift 5
1 parent 90923e6 commit e5dadb6

File tree

7 files changed

+55
-35
lines changed

7 files changed

+55
-35
lines changed

.swift-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.1
1+
5.0

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: objective-c
2-
osx_image: xcode8.3
2+
osx_image: xcode11.3
33
install:
4-
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)"
4+
- eval "$(curl -sL https://swiftenv.fuller.li/install.sh)"
55
script:
66
- make build

Package.pins

Lines changed: 0 additions & 30 deletions
This file was deleted.

Package.resolved

Lines changed: 43 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
1+
// swift-tools-version:4.0
12
import PackageDescription
23

34

45
let package = Package(
56
name: "querykit",
7+
products: [
8+
.executable(name: "querykit", targets: ["querykit-cli"]),
9+
],
610
dependencies: [
7-
.Package(url: "https://github.com/kylef/Stencil.git", majorVersion: 0, minor: 9),
8-
.Package(url: "https://github.com/kylef/Commander.git", majorVersion: 0, minor: 6),
11+
.package(url: "https://github.com/kylef/Stencil.git", from: "0.9.0"),
12+
.package(url: "https://github.com/kylef/Commander.git", from: "0.6.0"),
13+
],
14+
targets: [
15+
.target(name: "querykit-cli", dependencies: ["Stencil", "Commander"]),
916
]
1017
)

0 commit comments

Comments
 (0)