Skip to content

Commit

Permalink
Release 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jpsim committed May 29, 2015
1 parent ba9f870 commit 7fc587c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Master
## 0.1.1: Top Loading

##### Breaking

Expand All @@ -15,10 +15,6 @@
[Lars Lockefeer](https://github.com/larslockefeer)
[#16](https://github.com/realm/SwiftLint/issues/16)

* The following rules now conform to `ASTRule`:
FunctionBodyLength, Nesting, TypeBodyLength, TypeName, VariableName.
[JP Simard](https://github.com/jpsim)

* swiftlint now returns a non-zero error code when a warning of high-severity
or above is found in the source files being linted.
[Pat Wallace](https://github.com/pawrsccouk)
Expand All @@ -39,13 +35,17 @@
[JP Simard](https://github.com/jpsim)
[#62](https://github.com/realm/SwiftLint/issues/62)

* The following rules now conform to `ASTRule`:
FunctionBodyLength, Nesting, TypeBodyLength, TypeName, VariableName.
[JP Simard](https://github.com/jpsim)

##### Bug Fixes

* Trailing newline and file length violations are now displayed in Xcode.
[JP Simard](https://github.com/jpsim)
[#43](https://github.com/realm/SwiftLint/issues/43)


## 0.1.0
## 0.1.0: Fresh Out Of The Dryer

First Version!
2 changes: 1 addition & 1 deletion Source/SwiftLintFramework/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.1.0</string>
<string>0.1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Source/swiftlint/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.1.0</string>
<string>0.1.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion Source/swiftlint/VersionCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import Commandant
import LlamaKit

private let version = "0.1.0"
private let version = "0.1.1"

struct VersionCommand: CommandType {
let verb = "version"
Expand Down

0 comments on commit 7fc587c

Please sign in to comment.