Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2246bb9

Browse files
committed
Merge branch 'release/0.13.0'
* release/0.13.0: Fix formatting in CHANGELOG.md release 0.13.0
2 parents 4ebe939 + edef512 commit 2246bb9

File tree

3 files changed

+26
-12
lines changed

3 files changed

+26
-12
lines changed

CHANGELOG.md

Lines changed: 24 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,31 @@
66

77
##### Enhancements
88

9+
* None.
10+
11+
##### Bug Fixes
12+
13+
* None.
14+
15+
## 0.13.0: MakeYourClothesCleanAgain
16+
17+
##### Breaking
18+
19+
* None.
20+
21+
##### Enhancements
22+
923
* Add `ignores_comment` configuration for `trailing_whitespace` rule.
1024
[Javier Hernández](https://github.com/jaherhi)
1125
[#576](https://github.com/realm/SwiftLint/issues/576)
1226

1327
* Added HTML reporter, identifier is `html`.
1428
[Johnykutty Mathew](https://github.com/Johnykutty)
15-
29+
1630
* Add `SuperCallRule` Opt-In rule that warns about methods not calling to super.
1731
[Angel G. Olloqui](https://github.com/angelolloqui)
1832
[#803](https://github.com/realm/SwiftLint/issues/803)
19-
33+
2034
* Add `RedundantNilCoalesingRule` Opt-In rule that warns against `?? nil`.
2135
[Daniel Beard](https://github.com/daniel-beard)
2236
[#764](https://github.com/realm/SwiftLint/issues/764)
@@ -36,17 +50,17 @@
3650
violations.
3751
[Jonas](https://github.com/VFUC)
3852
[#742](https://github.com/realm/SwiftLint/issues/742)
39-
40-
* Add `SwitchCaseOnNewlineRule' opt-in rule that enforces a newline after
53+
54+
* Add `SwitchCaseOnNewlineRule` opt-in rule that enforces a newline after
4155
`case pattern:` in a `switch`.
4256
[Marcelo Fabri](https://github.com/marcelofabri)
4357
[#681](https://github.com/realm/SwiftLint/issues/681)
44-
58+
4559
* Add `ValidIBInspectableRule` rule that checks if `@IBInspectable` declarations
4660
are valid. An `@IBInspectable` is valid if:
4761
* It's declared as a `var` (not `let`)
4862
* Its type is explicit (not inferred)
49-
* Its type is one of the
63+
* Its type is one of the
5064
[supported types](http://help.apple.com/xcode/mac/8.0/#/devf60c1c514)
5165

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

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

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

85-
* Fixed: `ConditionalReturnsOnNewline' now respects severity configuration.
99+
* Fixed: `ConditionalReturnsOnNewline` now respects severity configuration.
86100
[Rohan Dhaimade](https://github.com/HaloZero)
87101
[#783](https://github.com/realm/SwiftLint/issues/783)
88-
89-
* Fixed: `ConditionalReturnsOnNewline' now checks if `return` is a keyword,
102+
103+
* Fixed: `ConditionalReturnsOnNewline` now checks if `return` is a keyword,
90104
avoiding false positives.
91105
[Marcelo Fabri](https://github.com/marcelofabri)
92106
[#784](https://github.com/realm/SwiftLint/issues/784)

Source/SwiftLintFramework/Supporting Files/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.12.0</string>
18+
<string>0.13.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Source/swiftlint/Supporting Files/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.12.0</string>
20+
<string>0.13.0</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)