Skip to content

Commit

Permalink
Merge branch 'release/0.13.0'
Browse files Browse the repository at this point in the history
* release/0.13.0:
  Fix formatting in CHANGELOG.md
  release 0.13.0
  • Loading branch information
norio-nomura committed Nov 4, 2016
2 parents 4ebe939 + edef512 commit 2246bb9
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 12 deletions.
34 changes: 24 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,31 @@

##### Enhancements

* None.

##### Bug Fixes

* None.

## 0.13.0: MakeYourClothesCleanAgain

##### Breaking

* None.

##### Enhancements

* Add `ignores_comment` configuration for `trailing_whitespace` rule.
[Javier Hernández](https://github.com/jaherhi)
[#576](https://github.com/realm/SwiftLint/issues/576)

* Added HTML reporter, identifier is `html`.
[Johnykutty Mathew](https://github.com/Johnykutty)

* Add `SuperCallRule` Opt-In rule that warns about methods not calling to super.
[Angel G. Olloqui](https://github.com/angelolloqui)
[#803](https://github.com/realm/SwiftLint/issues/803)

* Add `RedundantNilCoalesingRule` Opt-In rule that warns against `?? nil`.
[Daniel Beard](https://github.com/daniel-beard)
[#764](https://github.com/realm/SwiftLint/issues/764)
Expand All @@ -36,17 +50,17 @@
violations.
[Jonas](https://github.com/VFUC)
[#742](https://github.com/realm/SwiftLint/issues/742)
* Add `SwitchCaseOnNewlineRule' opt-in rule that enforces a newline after

* Add `SwitchCaseOnNewlineRule` opt-in rule that enforces a newline after
`case pattern:` in a `switch`.
[Marcelo Fabri](https://github.com/marcelofabri)
[#681](https://github.com/realm/SwiftLint/issues/681)

* Add `ValidIBInspectableRule` rule that checks if `@IBInspectable` declarations
are valid. An `@IBInspectable` is valid if:
* It's declared as a `var` (not `let`)
* Its type is explicit (not inferred)
* Its type is one of the
* Its type is one of the
[supported types](http://help.apple.com/xcode/mac/8.0/#/devf60c1c514)

[Marcelo Fabri](https://github.com/marcelofabri)
Expand All @@ -70,7 +84,7 @@

* Correctable rules no longer apply corrections if the rule is locally disabled.
[J. Cheyo Jimenez](https://github.com/masters3d)
[#601](https://github.com/realm/SwiftLint/issues/601)
[#601](https://github.com/realm/SwiftLint/issues/601)

* Fixed regex bug in Mark Rule where MARK could not be used with only a hyphen
but no descriptive text: `// MARK: -`.
Expand All @@ -82,11 +96,11 @@
[Cristian Filipov](https://github.com/cfilipov)
[#786](https://github.com/realm/SwiftLint/issues/786)

* Fixed: `ConditionalReturnsOnNewline' now respects severity configuration.
* Fixed: `ConditionalReturnsOnNewline` now respects severity configuration.
[Rohan Dhaimade](https://github.com/HaloZero)
[#783](https://github.com/realm/SwiftLint/issues/783)
* Fixed: `ConditionalReturnsOnNewline' now checks if `return` is a keyword,

* Fixed: `ConditionalReturnsOnNewline` now checks if `return` is a keyword,
avoiding false positives.
[Marcelo Fabri](https://github.com/marcelofabri)
[#784](https://github.com/realm/SwiftLint/issues/784)
Expand Down
2 changes: 1 addition & 1 deletion Source/SwiftLintFramework/Supporting Files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.12.0</string>
<string>0.13.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Source/swiftlint/Supporting Files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.12.0</string>
<string>0.13.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 2246bb9

Please sign in to comment.