Skip to content

Commit

Permalink
Merge pull request #18 from ryuichis/swift-4.1-migration
Browse files Browse the repository at this point in the history
Swift 4.1 Migration
  • Loading branch information
ryuichis authored Apr 1, 2018
2 parents 908b455 + 91d3ce6 commit bbd342c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ os:
language: generic
sudo: required
dist: trusty
osx_image: xcode9.2
osx_image: xcode9.3beta
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)";
swiftenv install 4.0.3;
swiftenv global 4.0.3;
export LD_LIBRARY_PATH=$HOME/.swiftenv/versions/4.0.3/usr/lib/swift/linux:$LD_LIBRARY_PATH;
swiftenv install 4.1;
swiftenv global 4.1;
export LD_LIBRARY_PATH=$HOME/.swiftenv/versions/4.1/usr/lib/swift/linux:$LD_LIBRARY_PATH;
fi
- swift --version
script:
Expand Down
8 changes: 4 additions & 4 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
"repositoryURL": "https://github.com/yanagiba/bocho",
"state": {
"branch": null,
"revision": "411fb57fe99824ebe8f107c69cf61fc8bc68853d",
"version": "0.1.1"
"revision": "997bd2aa557e39a284afc3245989aa006b0f28fa",
"version": "0.1.2"
}
},
{
"package": "swift-ast",
"repositoryURL": "https://github.com/yanagiba/swift-ast",
"state": {
"branch": null,
"revision": "95850381045b0386a3c4b18f8bf2af929da48398",
"version": null
"revision": "a3f4734b38216f78c51c370f10851eef8ae81450",
"version": "0.4.2"
}
}
]
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ let package = Package(
dependencies: [
.package(
url: "https://github.com/yanagiba/swift-ast",
.revision("95850381045b0386a3c4b18f8bf2af929da48398")
.exact("0.4.2")
),
.package(
url: "https://github.com/yanagiba/bocho",
.exact("0.1.1")
.exact("0.1.2")
),
],
targets: [
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[![Travis CI Status](https://api.travis-ci.org/yanagiba/swift-transform.svg?branch=master)](https://travis-ci.org/yanagiba/swift-transform)
[![codecov](https://codecov.io/gh/yanagiba/swift-transform/branch/master/graph/badge.svg)](https://codecov.io/gh/yanagiba/swift-transform)
![Swift 4.0](https://img.shields.io/badge/swift-4.0-brightgreen.svg)
![Swift 4.1](https://img.shields.io/badge/swift-4.1-brightgreen.svg)
![Swift Package Manager](https://img.shields.io/badge/SPM-ready-orange.svg)
![Platforms](https://img.shields.io/badge/platform-%20Linux%20|%20macOS%20-red.svg)
![License](https://img.shields.io/github/license/yanagiba/swift-transform.svg)
Expand All @@ -28,7 +28,7 @@ Please also check out the [status](https://github.com/yanagiba/swift-ast#a-work-

## Requirements

- [Swift 4.0](https://swift.org/download/)
- [Swift 4.1](https://swift.org/download/)

## Development

Expand Down

0 comments on commit bbd342c

Please sign in to comment.