Skip to content

Commit

Permalink
Bump version num & finalize new Changelog section
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeehut committed Apr 10, 2020
1 parent f0fb0b3 commit d6997ca
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ If needed, pluralize to `Tasks`, `PRs` or `Authors` and list multiple entries se

## [Unreleased]
### Added
- Added new `-x` / `--xcode` option to print out warnings & errors in an Xcode-compatible manner to improve user experience when used with an Xcode build script. Requires `arguments: CommandLine.arguments` as parameters to `logSummary` in config file.
Issue: [#4](https://github.com/Flinesoft/AnyLint/issues/4) | PR: [#8](https://github.com/Flinesoft/AnyLint/pull/8) | Author: [Cihat Gündüz](https://github.com/Jeehut)
- None.
### Changed
- None.
### Deprecated
Expand All @@ -32,6 +31,11 @@ If needed, pluralize to `Tasks`, `PRs` or `Authors` and list multiple entries se
### Security
- None.

## [0.2.0] - 2020-04-10
### Added
- Added new `-x` / `--xcode` option to print out warnings & errors in an Xcode-compatible manner to improve user experience when used with an Xcode build script. Requires `arguments: CommandLine.arguments` as parameters to `logSummary` in config file.
Issue: [#4](https://github.com/Flinesoft/AnyLint/issues/4) | PR: [#8](https://github.com/Flinesoft/AnyLint/pull/8) | Author: [Cihat Gündüz](https://github.com/Jeehut)

## [0.1.1] - 2020-03-23
### Added
- Added two simple lint check examples in first code sample in README. (Thanks for the pointer, [Dave Verwer](https://github.com/daveverwer)!)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
alt="Coverage"/>
</a>
<a href="https://github.com/Flinesoft/AnyLint/releases">
<img src="https://img.shields.io/badge/Version-0.1.1-blue.svg"
alt="Version: 0.1.1">
<img src="https://img.shields.io/badge/Version-0.2.0-blue.svg"
alt="Version: 0.2.0">
</a>
<a href="https://github.com/Flinesoft/AnyLint/blob/main/LICENSE">
<img src="https://img.shields.io/badge/License-MIT-lightgrey.svg"
Expand Down Expand Up @@ -91,7 +91,7 @@ This will create the Swift script file `lint.swift` with something like the foll

```swift
#!/usr/local/bin/swift-sh
import AnyLint // @Flinesoft ~> 0.1.1
import AnyLint // @Flinesoft ~> 0.2.0

// MARK: - Variables
let readmeFile: Regex = #"README\.md"#
Expand Down Expand Up @@ -310,7 +310,7 @@ When using the `customCheck`, you might want to also include some Swift packages
```swift
#!/usr/local/bin/swift-sh
import AnyLint // @Flinesoft ~> 0.1.1
import AnyLint // @Flinesoft ~> 0.2.0
import Files // @JohnSundell ~> 4.1.1
import ShellOut // @JohnSundell ~> 2.3.0

Expand Down
2 changes: 1 addition & 1 deletion Sources/Utility/Constants.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public var log = Logger(outputType: .console)
/// Constants to reference across the project.
public enum Constants {
/// The current tool version string. Conforms to SemVer 2.0.
public static let currentVersion: String = "0.1.1"
public static let currentVersion: String = "0.2.0"

/// The name of this tool.
public static let toolName: String = "AnyLint"
Expand Down

0 comments on commit d6997ca

Please sign in to comment.