Skip to content

Commit 21c3aaf

Browse files
committed
Merge branch 'release/0.9.0'
2 parents 2c80abb + 36dc9de commit 21c3aaf

File tree

80 files changed

+502
-513
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+502
-513
lines changed

.codecov.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
coverage:
22
ignore:
3-
- Carthage/*
4-
- Example/*
5-
- ExampleUITests/*
6-
- QuickTableViewControllerTests/*
7-
- Pods/*
3+
- "Carthage/**/*"
4+
- "Example*/**/*"
5+
- "*Tests/**/*"
6+
- "Pods/**/*"

.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

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: objective-c
2-
osx_image: xcode9
2+
osx_image: xcode9.2
33
matrix:
44
include:
55
- env: VERSION=latest
@@ -17,11 +17,11 @@ before_script:
1717
- if [ -n "$DANGER_GITHUB_API_TOKEN" ]; then bundle exec danger; fi
1818
script:
1919
- bundle exec rake ci:test[QuickTableViewController-iOS]
20-
- bundle exec rake ci:test[Example]
20+
- bash <(curl -s https://codecov.io/bash) -cF ios -J "QuickTableViewController"
21+
- bundle exec rake ci:test[Example-iOS]
2122
- make -B carthage
2223
- make -B docs
2324
after_success:
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: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Change Log
22

3+
## v0.9.0
4+
5+
#### Breaking
6+
7+
* Change the `Icon` type (since [v0.2.0](#v020)) from struct to enum:
8+
9+
```swift
10+
enum Icon {
11+
case named(String)
12+
case image(UIImage)
13+
case images(normal: UIImage, highlighted: UIImage)
14+
}
15+
```
16+
17+
* Rename the protocols (introduced in [v0.8.1](#v081)) that define specific rows regardless of their associated cell types:
18+
19+
* `NavigationRowCompatible`
20+
* `OptionSelectable``OptionRowCompatible`
21+
* `Switchable``SwitchRowCompatible`
22+
* `Tappable``TapActionRowCompatible`
23+
324
## v0.8.4
425

526
#### Fixes
File renamed without changes.

Example/Assets.xcassets/AppIcon.appiconset/Contents.json renamed to Example-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
{
22
"images" : [
3+
{
4+
"idiom" : "iphone",
5+
"size" : "20x20",
6+
"scale" : "2x"
7+
},
8+
{
9+
"idiom" : "iphone",
10+
"size" : "20x20",
11+
"scale" : "3x"
12+
},
313
{
414
"idiom" : "iphone",
515
"size" : "29x29",
@@ -29,6 +39,11 @@
2939
"idiom" : "iphone",
3040
"size" : "60x60",
3141
"scale" : "3x"
42+
},
43+
{
44+
"idiom" : "ios-marketing",
45+
"size" : "1024x1024",
46+
"scale" : "1x"
3247
}
3348
],
3449
"info" : {
File renamed without changes.

0 commit comments

Comments
 (0)