Skip to content

Commit

Permalink
Merge pull request #39 from Zewo/swift-4
Browse files Browse the repository at this point in the history
Move to Swift 4
  • Loading branch information
ratranqu authored Nov 4, 2017
2 parents 53b185e + e7e7995 commit 3e78449
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.DS_Store
*.lock
*.resolved
/build
/.build
/Packages
Expand Down
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1
4.0.2
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
os:
- linux
- osx
language: generic
sudo: false
dist: trusty
osx_image: xcode8.3
addons:
apt:
sources:
Expand Down
11 changes: 9 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
// swift-tools-version:3.1
// swift-tools-version:4.0

import PackageDescription

let package = Package(
name: "Venice",
products: [
.library(name: "Venice", targets: ["Venice"])
],
dependencies: [
.Package(url: "https://github.com/Zewo/CLibdill.git", majorVersion: 1)
.package(url: "https://github.com/Zewo/CLibdill.git", from: "2.0.0")
],
targets: [
.target(name: "Venice"),
.testTarget(name: "VeniceTests", dependencies: ["Venice"]),
]
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
machine:
xcode:
version: 9.1
dependencies:
override:
- eval "$(curl -sL http://sh.zewo.io/install-libdill.sh)"
Expand Down

0 comments on commit 3e78449

Please sign in to comment.