Skip to content

Commit d1a68fd

Browse files
committed
Bump version to 0.9.0
1 parent 4d8d418 commit d1a68fd

7 files changed

Lines changed: 12 additions & 10 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: 0.8.4
8+
module_version: 0.9.0
99
output: docs/output
1010
theme: fullwidth
1111
skip_undocumented: true

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.8.4</string>
20+
<string>0.9.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>0.8.4</string>
18+
<string>0.9.0</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.8.4</string>
18+
<string>0.9.0</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.8.4</string>
18+
<string>0.9.0</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.8.4"
3+
s.version = "0.9.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"

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/QuickTableViewController.svg)](https://cocoapods.org/pods/QuickTableViewController)
66
![Platform](https://img.shields.io/cocoapods/p/QuickTableViewController.svg)
77
[![codecov](https://codecov.io/gh/bcylin/QuickTableViewController/branch/master/graph/badge.svg)](https://codecov.io/gh/bcylin/QuickTableViewController)
8-
![Swift 4.0](https://img.shields.io/badge/Swift-4.0-orange.svg)
8+
![Swift 4.1](https://img.shields.io/badge/Swift-4.1-orange.svg)
99

1010
A simple way to create a table view for settings, including:
1111

@@ -139,9 +139,10 @@ OptionRow(title: "Option", isSelected: true, action: { (sender: Row) in })
139139

140140
All rows must conform to [`Row`](https://github.com/bcylin/QuickTableViewController/blob/develop/Source/Protocol/Row.swift) and [`RowStyle`](https://github.com/bcylin/QuickTableViewController/blob/develop/Source/Protocol/RowStyle.swift). Addtional interface to work with specific types of rows are represented as different protocols:
141141

142-
* `Switchable`
143-
* `Tappable`
144-
* `OptionSelectable`
142+
* `NavigationRowCompatible`
143+
* `OptionRowCompatible`
144+
* `SwitchRowCompatible`
145+
* `TapActionRowCompatible`
145146

146147
### Cell Classes
147148

@@ -229,6 +230,7 @@ QuickTableViewController | iOS | Xcode | Swift
229230
`~> 0.6.0` | 8.0+ | 8.3 | ![Swift 3.1](https://img.shields.io/badge/Swift-3.1-orange.svg)
230231
`~> 0.7.0` | 8.0+ | 9.0 | ![Swift 3.2](https://img.shields.io/badge/Swift-3.2-orange.svg)
231232
`~> 0.8.0` | 8.0+ | 9.1 | ![Swift 4.0](https://img.shields.io/badge/Swift-4.0-orange.svg)
233+
`~> 0.9.0` | 8.0+ | 9.3 | ![Swift 4.1](https://img.shields.io/badge/Swift-4.1-orange.svg)
232234

233235
## Installation
234236

0 commit comments

Comments
 (0)