Skip to content

Commit a444f17

Browse files
committed
Bump version to 0.9.1
[ci skip]
1 parent e2878b0 commit a444f17

File tree

8 files changed

+18
-20
lines changed

8 files changed

+18
-20
lines changed

.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.9.0
8+
module_version: 0.9.1
99
output: docs/output
1010
theme: fullwidth
1111
skip_undocumented: true

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## `develop` branch
3+
## v0.9.1
44

55
#### Fixes
66

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>0.9.0</string>
20+
<string>0.9.1</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>0.9.0</string>
18+
<string>0.9.1</string>
1919
<key>CFBundleVersion</key>
2020
<string>1</string>
2121
</dict>

QuickTableViewController-iOS/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.9.0</string>
18+
<string>0.9.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

QuickTableViewController-iOSTests/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.9.0</string>
18+
<string>0.9.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

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.9.0"
3+
s.version = "0.9.1"
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"

README.md

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ NavigationRow(title: "UITableViewCellStyle", subtitle: .leftAligned(".value2"))
8181
#### Images
8282

8383
* Images in table view cells can be set by specifying the `icon` of each row.
84-
* The `Icon` carries info about images for both normal and highlighted states.
8584
* Table view cells in `UITableViewCellStyle.value2` will not show the image view.
8685

8786
```swift
@@ -91,8 +90,8 @@ NavigationRow(title: "Cell with image", subtitle: .none, icon: icon)
9190

9291
#### Disclosure Indicator
9392

94-
* A `NavigationRow` with an `action` will be displayed in a table view cell whose `accessoryType` is `.disclosureIndicator`.
95-
* The `action` will be invoked when the related table view cell is selected.
93+
* A `NavigationRow` with an `action` will be displayed in a table view cell with `.disclosureIndicator`.
94+
* The `action` will be invoked when the table view cell is selected.
9695

9796
```swift
9897
NavigationRow(title: "Navigation cell", subtitle: .none, action: { (sender: Row) in })
@@ -111,26 +110,25 @@ SwitchRow(title: "Switch", switchValue: true, action: { (sender: Row) in }),
111110
### TapActionRow
112111

113112
* A `TapActionRow` is representing a button-like table view cell.
114-
* The `action` will be invoked when the related table view cell is selected.
115-
* `Icon` is disabled in `TapActionRow`.
113+
* The `action` will be invoked when the table view cell is selected.
114+
* The icon and subtitle are disabled in `TapActionRow`.
116115

117116
```swift
118117
TapActionRow(title: "Tap action", action: { (sender: Row) in })
119118
```
120119

121120
### OptionRow & RadioSection
122121

123-
* An `OptionRow` is representing a selectable table view cell.
124-
* When the row `isSelected`, the table view cell shows `.checkmark` as its `accessoryType`.
125-
* The `action` will be invoked when the selection is toggled.
122+
* An `OptionRow` is representing a table view cell with `.checkmark`.
123+
* The `action` will be invoked when the selected state is toggled.
126124
* The subtitle is disabled in `OptionRow`.
127125

128126
```swift
129127
OptionRow(title: "Option", isSelected: true, action: { (sender: Row) in })
130128
```
131129

132-
* `OptionRow` can be used with or without `RadioSection`, which allows only one selection.
133-
* `RadioSection` allows all options unselected by default. Set `alwaysSelectsOneOption` to true to keep one option selected.
130+
* `OptionRow` can be used with or without `RadioSection`, which allows only one selected option.
131+
* All options can be unselected in `RadioSection` by default. Setting `alwaysSelectsOneOption` to true will keep one of the options selected.
134132

135133
## Customization
136134

@@ -196,17 +194,17 @@ protocol RowStyle {
196194
}
197195
```
198196

199-
The `customize` closure overwrites the `Configurable` changes.
197+
The `customize` closure overwrites the `Configurable` setup.
200198

201199
### UIAppearance
202200

203-
As discussed in issue [#12](https://github.com/bcylin/QuickTableViewController/issues/12), UIAppearance customization works when the cell is dequeued from the storyboard. One way to work around this is to register nib objects to the table view. Check out [AppearanceViewController](https://github.com/bcylin/QuickTableViewController/blob/develop/Example/ViewControllers/AppearanceViewController.swift) for the setups.
201+
As discussed in issue [#12](https://github.com/bcylin/QuickTableViewController/issues/12), UIAppearance customization works when the cell is dequeued from the storyboard. One way to work around this is to register nib objects to the table view. Check out [AppearanceViewController](https://github.com/bcylin/QuickTableViewController/blob/develop/Example/ViewControllers/AppearanceViewController.swift) for the setup.
204202

205203
## Limitation
206204

207205
> When to use **QuickTableViewController**?
208206

209-
QuickTableViewController is good for presenting static table contents, where the sections and rows don't need to change dynamically after `viewDidLoad`.
207+
QuickTableViewController is good for presenting static table contents, where the sections and rows don't change dynamically after `viewDidLoad`.
210208

211209
It's possible to update the table contents by replacing a specific section or row. Using different styles on each row requires additional configuration as described in the [Customization](#customization) section.
212210

0 commit comments

Comments
 (0)