Skip to content

Commit 3b9473a

Browse files
committed
Use Xcode 9 on Travis CI
1 parent b54f205 commit 3b9473a

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

.swift-version

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

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: objective-c
2-
osx_image: xcode8.3
2+
osx_image: xcode9
33
cache:
44
bundler: true
55
directories:
@@ -8,7 +8,7 @@ cache:
88
before_install:
99
- export LANG=en_US.UTF-8
1010
- xcrun instruments -s devices
11-
- xcrun instruments -w "iPhone 7 (10.3.1) [" || true
11+
- xcrun instruments -w "iPhone 8 (11.0) [" || true
1212
install:
1313
- make install
1414
before_script:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.5.0
2+
3+
* Swift 4.0
4+
15
## v1.4.1
26

37
* Fix `tokenField(_:didChangeInputText:)` with the delete key [#20](https://github.com/polydice/ICInputAccessory/pull/20)

ICInputAccessory.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@
627627
ONLY_ACTIVE_ARCH = YES;
628628
SDKROOT = iphoneos;
629629
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
630-
SWIFT_VERSION = 3.0;
630+
SWIFT_VERSION = 4.0;
631631
TARGETED_DEVICE_FAMILY = "1,2";
632632
VERSIONING_SYSTEM = "apple-generic";
633633
VERSION_INFO_PREFIX = "";
@@ -677,7 +677,7 @@
677677
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
678678
MTL_ENABLE_DEBUG_INFO = NO;
679679
SDKROOT = iphoneos;
680-
SWIFT_VERSION = 3.0;
680+
SWIFT_VERSION = 4.0;
681681
TARGETED_DEVICE_FAMILY = "1,2";
682682
VALIDATE_PRODUCT = YES;
683683
VERSIONING_SYSTEM = "apple-generic";

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Try <https://testflight.icook.tw>.
77
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg)](https://github.com/Carthage/Carthage)
88
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/ICInputAccessory.svg)](https://cocoapods.org/pods/ICInputAccessory)
99
![Platform](https://img.shields.io/cocoapods/p/ICInputAccessory.svg)
10-
![Swift 3.1](https://img.shields.io/badge/Swift-3.1-orange.svg)
10+
![Swift 4](https://img.shields.io/badge/Swift-4.0-orange.svg)
1111

1212
### ICKeyboardDismissTextField
1313

@@ -31,6 +31,7 @@ ICInputAccessory | iOS | Xcode | Swift
3131
`~> 1.2.0` | 8.0+ | 8.0 | ![Swift 2.3](https://img.shields.io/badge/Swift-2.3-orange.svg)
3232
`~> 1.3.0` | 8.0+ | 8.0 | ![Swift 3.0](https://img.shields.io/badge/Swift-3.0-orange.svg)
3333
`~> 1.4.0` | 8.0+ | 8.3 | ![Swift 3.1](https://img.shields.io/badge/Swift-3.1-orange.svg)
34+
`develop` | 8.0+ | 9.0 | ![Swift 4.0](https://img.shields.io/badge/Swift-4.0-orange.svg)
3435

3536
## Installation
3637

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def xcodebuild(params)
2222
%(-workspace ICInputAccessory.xcworkspace),
2323
%(-scheme #{params[:scheme]}),
2424
%(-sdk iphonesimulator),
25-
%(-destination 'name=iPhone 7,OS=#{params[:version] || "latest"}'),
25+
%(-destination 'name=iPhone 8,OS=#{params[:version] || "latest"}'),
2626
%(#{params[:action]} | xcpretty -c && exit ${PIPESTATUS[0]})
2727
].join " "
2828
end

0 commit comments

Comments
 (0)