Skip to content

Commit f3a12cb

Browse files
committed
Merge branch 'release/1.1.0' into develop
2 parents e23d9a4 + a98d05b commit f3a12cb

20 files changed

Lines changed: 75 additions & 52 deletions

File tree

.jazzy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ github_url: https://github.com/bcylin/QuickTableViewController
55
github_file_prefix: https://github.com/bcylin/QuickTableViewController/blob/develop
66
xcodebuild_arguments: [-project, QuickTableViewController.xcodeproj, -scheme, QuickTableViewController-iOS]
77
module: QuickTableViewController
8-
module_version: 1.0.0
8+
module_version: 1.1.0
99
output: docs/output
1010
theme: fullwidth
1111
skip_undocumented: true

.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: xcode10
2+
osx_image: xcode10.1
33
cache:
44
- bundler
55
- cocoapods
@@ -22,7 +22,7 @@ script:
2222
- make -B carthage
2323
- make -B docs
2424
after_success:
25-
- sh scripts/update-docs.sh
25+
- sh scripts/push-docs.sh
2626
notifications:
2727
email: false
2828
slack:

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44

55
#### Enhancements
66

7+
* Swift 4.2, [#20](https://github.com/bcylin/QuickTableViewController/pull/20) by [@getaaron](https://github.com/getaaron) and [#28](https://github.com/bcylin/QuickTableViewController/pull/28) by [@ mttcrsp](https://github.com/mttcrsp)
8+
* tvOS UI tests, [#27](https://github.com/bcylin/QuickTableViewController/pull/27) by [@FraDeliro](https://github.com/FraDeliro)
9+
* `Subtitle` is deprecated and will be removed in [**v2.0.0**](https://github.com/bcylin/QuickTableViewController/releases/tag/v2.0.0)
710
* Rename `Row`'s title and subtitle to text and detail text to align with `UITableViewCell`'s naming
8-
* `Subtitle` is deprecated and will be removed in **v2.0.0**
911
* Enable **detailText** in `OptionRow` and `SwitchRow`
1012
* Add **accessoryButtonAction** to `NavigationRow`
1113

Example-iOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.0.0</string>
20+
<string>1.1.0</string>
2121
<key>CFBundleVersion</key>
2222
<string>101</string>
2323
<key>LSRequiresIPhoneOS</key>

Example-iOSUITests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0.0</string>
18+
<string>1.1.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
</dict>

Example-tvOS/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0.0</string>
18+
<string>1.1.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>101</string>
2121
<key>LSRequiresIPhoneOS</key>

Example-tvOSUITests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>1.1.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
</dict>

Makefile

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
default: test
22

3-
test:
4-
xcodebuild clean build -workspace QuickTableViewController.xcworkspace -scheme QuickTableViewController-iOS -sdk iphonesimulator SWIFT_VERSION=3.0 | bundle exec xcpretty -c
5-
bundle exec rake "test:ios[QuickTableViewController-iOS]"
6-
bundle exec rake "test:tvos[QuickTableViewController-tvOS]"
7-
bundle exec rake "test:ios[Example-iOS]"
8-
bundle exec rake "build:tvos[Example-tvOS]"
9-
10-
ci-test: test
3+
test: unit-test ui-test
4+
5+
unit-test:
6+
bundle exec rake \
7+
"test:ios[QuickTableViewController-iOS]" \
8+
"test:tvos[QuickTableViewController-tvOS]" \
9+
10+
ui-test:
11+
bundle exec rake \
12+
"test:ios[Example-iOS]" \
13+
"test:tvos[Example-tvOS]"
14+
15+
ci-test: unit-test ui-test
1116
make -B carthage
1217
make -B docs
1318

QuickTableViewController.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "QuickTableViewController"
3-
s.version = "1.0.0"
3+
s.version = "1.1.0"
44
s.summary = "A simple way to create a UITableView for settings."
55
s.screenshots = "https://bcylin.github.io/QuickTableViewController/img/screenshot-1.png",
66
"https://bcylin.github.io/QuickTableViewController/img/screenshot-2.png"

QuickTableViewController.xcodeproj/xcshareddata/xcschemes/Example-iOS.xcscheme

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1000"
3+
LastUpgradeVersion = "1010"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"

0 commit comments

Comments
 (0)