Skip to content

Commit 2c80abb

Browse files
committed
Merge branch 'release/0.8.4'
2 parents 516cf6b + ef83459 commit 2c80abb

File tree

14 files changed

+27
-25
lines changed

14 files changed

+27
-25
lines changed

.codecov.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,3 @@ coverage:
55
- ExampleUITests/*
66
- QuickTableViewControllerTests/*
77
- Pods/*
8-
status:
9-
project:
10-
default:
11-
enabled: yes
12-
target: 80%
13-
threshold: 3%

.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: 0.8.3
8+
module_version: 0.8.4
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
@@ -9,7 +9,7 @@ cache:
99
before_install:
1010
- export LANG=en_US.UTF-8
1111
- xcrun instruments -s devices
12-
- xcrun instruments -w "iPhone 7 (10.3.1) [" || true
12+
- open -b com.apple.iphonesimulator
1313
install:
1414
- bundle install --without development --deployment --jobs=3 --retry=3
1515
- bundle exec pod install
@@ -21,7 +21,7 @@ script:
2121
- make -B carthage
2222
- make -B docs
2323
after_success:
24-
- bash <(curl -s https://codecov.io/bash) -cF ios
24+
# - bash <(curl -s https://codecov.io/bash) -cF ios
2525
- sh scripts/update-docs.sh
2626
notifications:
2727
email: false

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## v0.8.4
4+
5+
#### Fixes
6+
7+
* Use `TapActionCell`'s `tintColor` as its label `textColor`, [#13](https://github.com/bcylin/QuickTableViewController/pull/13) by [@sanekgusev](https://github.com/sanekgusev)
8+
39
## v0.8.3
410

511
#### Fixes

Example/AppDelegate.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ internal final class AppDelegate: UIResponder, UIApplicationDelegate {
3535

3636
// See AppearanceViewController for the setups.
3737
UILabel.appearance(whenContainedInInstancesOf: [UITableViewCell.self]).textColor = .blue
38-
UISwitch.appearance(whenContainedInInstancesOf: [UITableViewCell.self]).onTintColor = .blue
3938

4039
window = UIWindow(frame: UIScreen.main.bounds)
4140
window?.backgroundColor = UIColor.white

Example/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>0.8.3</string>
20+
<string>0.8.4</string>
2121
<key>CFBundleVersion</key>
2222
<string>101</string>
2323
<key>LSRequiresIPhoneOS</key>

Example/ViewControllers/RootViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ internal final class RootViewController: QuickTableViewController {
5151
})
5252
]),
5353

54-
Section(title: "Appearance", rows: [
55-
NavigationRow(title: "UIAppearance customization", subtitle: .none, action: { [weak self] _ in
54+
Section(title: "UIAppearance", rows: [
55+
NavigationRow(title: "UILabel customization", subtitle: .none, action: { [weak self] _ in
5656
self?.navigationController?.pushViewController(AppearanceViewController(), animated: true)
5757
})
5858
])

ExampleUITests/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>0.8.3</string>
18+
<string>0.8.4</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
</dict>

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 = "0.8.3"
3+
s.version = "0.8.4"
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/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>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.8.3</string>
18+
<string>0.8.4</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)