File tree 4 files changed +13
-5
lines changed
4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
1
language : objective-c
2
- osx_image : xcode10.2
2
+ osx_image : xcode11.0
3
3
branches :
4
4
only :
5
5
- master
6
6
env :
7
7
global :
8
8
- LC_CTYPE=en_US.UTF-8
9
9
- LANG=en_US.UTF-8
10
- - IOS_SDK=iphonesimulator12.2
10
+ - IOS_SDK=iphonesimulator13.0
11
11
- SCHEME_IOS="TableKit"
12
12
- PROJECT_FRAMEWORK="TableKit.xcodeproj"
13
13
14
14
matrix :
15
15
- DESTINATION="OS=10.0,name=iPhone 5" SCHEME="$SCHEME_IOS" SDK="$IOS_SDK"
16
16
- DESTINATION="OS=11.1,name=iPhone 6" SCHEME="$SCHEME_IOS" SDK="$IOS_SDK"
17
17
- DESTINATION="OS=12.0,name=iPhone 7 Plus" SCHEME="$SCHEME_IOS" SDK="$IOS_SDK"
18
+ - DESTINATION="OS=13.0,name=iPhone 11" SCHEME="$SCHEME_IOS" SDK="$IOS_SDK"
18
19
19
20
script :
20
21
- set -o pipefail
Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+ ## [ 2.10.0] ( https://github.com/maxsokolov/TableKit/releases/tag/2.10.0 )
6
+ Released on 2019-09-29.
7
+ - Swift 5.1 support.
8
+
5
9
## [ 2.9.0] ( https://github.com/maxsokolov/TableKit/releases/tag/2.9.0 )
6
10
Released on 2019-04-04.
7
11
- Swift 5.0 support.
Original file line number Diff line number Diff line change 2
2
3
3
<p align =" left " >
4
4
<a href="https://travis-ci.org/maxsokolov/TableKit"><img src="https://api.travis-ci.org/maxsokolov/TableKit.svg" alt="Build Status" /></a>
5
- <a href="https://developer.apple.com/swift"><img src="https://img.shields.io/badge/Swift_5.0 -compatible-4BC51D.svg?style=flat" alt="Swift 5.0 compatible" /></a>
5
+ <a href="https://developer.apple.com/swift"><img src="https://img.shields.io/badge/Swift_5.1 -compatible-4BC51D.svg?style=flat" alt="Swift 5.1 compatible" /></a>
6
6
<a href="https://github.com/Carthage/Carthage"><img src="https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat" alt="Carthage compatible" /></a>
7
- <a href="https://cocoapods.org/pods/tablekit"><img src="https://img.shields.io/badge/pod-2.9 .0-blue.svg" alt="CocoaPods compatible" /></a>
7
+ <a href="https://cocoapods.org/pods/tablekit"><img src="https://img.shields.io/badge/pod-2.10 .0-blue.svg" alt="CocoaPods compatible" /></a>
8
8
<img src="https://img.shields.io/badge/platform-iOS-blue.svg?style=flat" alt="Platform iOS" />
9
9
<a href="https://raw.githubusercontent.com/maxsokolov/tablekit/master/LICENSE"><img src="http://img.shields.io/badge/license-MIT-blue.svg?style=flat" alt="License: MIT" /></a>
10
10
</p >
Original file line number Diff line number Diff line change @@ -74,7 +74,10 @@ class TableKitTests: XCTestCase {
74
74
super. setUp ( )
75
75
76
76
testController = TestController ( )
77
- testController. view. isHidden = false
77
+ testController. tableView. frame = UIScreen . main. bounds
78
+ testController. tableView. isHidden = false
79
+ testController. tableView. setNeedsLayout ( )
80
+ testController. tableView. layoutIfNeeded ( )
78
81
}
79
82
80
83
override func tearDown( ) {
You can’t perform that action at this time.
0 commit comments