Skip to content

Commit

Permalink
Merge branch 'release/0.6.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
bcylin committed Aug 16, 2017
2 parents 89257de + 7f6cd2c commit 062906a
Show file tree
Hide file tree
Showing 30 changed files with 682 additions and 559 deletions.
2 changes: 1 addition & 1 deletion .jazzy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ github_url: https://github.com/bcylin/QuickTableViewController
github_file_prefix: https://github.com/bcylin/QuickTableViewController/blob/develop
xcodebuild_arguments: [-project, QuickTableViewController.xcodeproj, -scheme, QuickTableViewController-iOS]
module: QuickTableViewController
module_version: 0.6.0
module_version: 0.6.1
output: docs/output
theme: fullwidth
1 change: 1 addition & 0 deletions .swiftlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ opt_in_rules:
- vertical_parameter_alignment_on_call
included:
- Example
- ExampleUITests
- QuickTableViewControllerTests
- Source
excluded:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ install:
before_script:
- if [ -n "$DANGER_GITHUB_API_TOKEN" ]; then bundle exec danger; fi
script:
- bundle exec rake ci:build[Example]
- bundle exec rake ci:test[QuickTableViewController-iOS]
- bundle exec rake ci:test[Example]
- make -B carthage
- make -B docs
after_success:
Expand Down
48 changes: 45 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change Log

## v0.6.1

#### Enhancements

* UI testing
* Change sections and rows from structs to classes
* Allow customized cell classes to implement the `Configurable` method in addition to the default setup

#### Fixes

* UISwitch animation [#9](https://github.com/bcylin/QuickTableViewController/issues/9)

## v0.6.0

#### Breaking
Expand All @@ -11,7 +23,11 @@

* Specify table view cell types to rows during initialization
* Separate `RowStyle` from the original `Row` protocol
* Add an additional cell customization `((UITableViewCell, Row & RowStyle) -> Void)?` for each row
* Add an additional cell customization `((UITableViewCell, Row & RowStyle) -> Void)?` for each row [#8](https://github.com/bcylin/QuickTableViewController/issues/8)

#### Project Updates

* CocoaPods 1.3.0

## v0.5.3

Expand All @@ -30,9 +46,13 @@ Cell Reuse identifier | SwitchRow | TapActionRow

#### Enhancements

* Xcode 8.3
* Make the image name and highlighted image name of `Icon` public readonly

#### Project Updates

* Xcode 8.3
* CocoaPods 1.2.1

## v0.5.1

#### Enhancements
Expand All @@ -46,6 +66,11 @@ Cell Reuse identifier | SwitchRow | TapActionRow

* Swift 3.0

#### Project Updates

* Auto generated docs
* Move the example to the project root directory

## v0.4.0

#### Enhancements
Expand All @@ -54,12 +79,24 @@ Cell Reuse identifier | SwitchRow | TapActionRow
* Improved documentation
* Make the images of `Icon` readonly

#### Project Updates

* CocoaPods 1.1.0.rc.2
* Run tests with fastlane scan
* Integrate with [danger.systems](https://github.com/danger/danger)

## v0.3.0

#### Enhancements

* Swift 2.2
* Both `NavigationRow` and `SwitchRow` conform to `IconEnabled`.
* Both `NavigationRow` and `SwitchRow` conform to `IconEnabled` [#2](https://github.com/bcylin/QuickTableViewController/issues/2)

#### Project Updates

* CocoaPods 1.0.1
* Calculate code coverage
* SwiftLint with Hound CI

## v0.2.0

Expand All @@ -77,6 +114,11 @@ Cell Reuse identifier | SwitchRow | TapActionRow

* Fix the access control on the overridden initializer

#### Project Updates

* Run tests on Travis CI
* Clean up syntax with SwiftLint

## v0.1.1

#### Fixes
Expand Down
Loading

0 comments on commit 062906a

Please sign in to comment.