Skip to content

Commit b344c30

Browse files
committed
Merge branch 'release/1.1.1'
2 parents 5cadedd + f2037e6 commit b344c30

25 files changed

Lines changed: 213 additions & 165 deletions

.jazzy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ clean: true
22
author: bcylin
33
author_url: https://github.com/bcylin
44
github_url: https://github.com/bcylin/QuickTableViewController
5-
github_file_prefix: https://github.com/bcylin/QuickTableViewController/blob/develop
5+
github_file_prefix: https://github.com/bcylin/QuickTableViewController/blob/v1.1.1
66
xcodebuild_arguments: [-project, QuickTableViewController.xcodeproj, -scheme, QuickTableViewController-iOS]
77
module: QuickTableViewController
8-
module_version: 1.1.0
8+
module_version: 1.1.1
99
output: docs/output
1010
theme: fullwidth
1111
skip_undocumented: true

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ cache:
66
before_install:
77
- export LANG=en_US.UTF-8
88
- xcrun instruments -s devices
9-
- open -a /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app
109
install:
1110
- bundle install --without development --deployment --jobs=3 --retry=3
11+
- bundle exec rake launch:simulators
1212
- bundle exec pod install
1313
before_script:
1414
- if [ -n "$DANGER_GITHUB_API_TOKEN" ]; then bundle exec danger; fi

CHANGELOG.md

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

3+
## v1.1.1
4+
5+
#### Fixes
6+
7+
* Fix the animated `OptionRow` deselection
8+
* Invoke `accessoryButtonAction` asynchronously to match the behaviour of row `action`
9+
* Remove `ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES` from build settings
10+
311
## v1.1.0
412

513
#### Enhancements

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.1.0</string>
20+
<string>1.1.1</string>
2121
<key>CFBundleVersion</key>
2222
<string>101</string>
2323
<key>LSRequiresIPhoneOS</key>

Example-iOS/ViewControllers/ExampleViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@ internal final class ExampleViewController: QuickTableViewController {
122122
private func showDebuggingText(_ text: String) {
123123
print(text)
124124
debugging.rows = [NavigationRow(text: text, detailText: .none)]
125-
DispatchQueue.main.asyncAfter(deadline: .now() + 0.2) { [weak self] in
126-
self?.tableView.reloadData()
125+
if let section = tableContents.index(where: { $0 === debugging }) {
126+
tableView.reloadSections([section], with: .none)
127127
}
128128
}
129129

Example-iOSUITests/ExampleUITests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//
22
// ExampleUITests.swift
3-
// ExampleUITests
3+
// Example-iOSUITests
44
//
55
// Created by Ben on 14/08/2017.
66
// Copyright © 2017 bcylin.

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.1.0</string>
18+
<string>1.1.1</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.1.0</string>
18+
<string>1.1.1</string>
1919
<key>CFBundleVersion</key>
2020
<string>101</string>
2121
<key>LSRequiresIPhoneOS</key>

Example-tvOSUITests/ExampleUITests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
//
2-
// Example_tvOSUITests.swift
2+
// ExampleUITests.swift
33
// Example-tvOSUITests
44
//
55
// Created by Francesco Deliro on 07/10/2018.
6-
// Copyright © 2018 bcylin. All rights reserved.
6+
// Copyright © 2018 bcylin.
77
//
88
// Permission is hereby granted, free of charge, to any person obtaining a copy
99
// of this software and associated documentation files (the "Software"), to deal

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.1.0</string>
18+
<string>1.1.1</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
</dict>

0 commit comments

Comments
 (0)