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 Mar 23, 2020
1 parent 2a7ea41 commit 6538d50
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,9 @@ If needed, pluralize to `Tasks`, `PRs` or `Authors` and list multiple entries se

## [Unreleased]
### Added
- Added two simple lint check examples in first code sample in README. (Thanks for the pointer, [Dave Verwer](https://github.com/daveverwer)!)
Author: [Cihat Gündüz](https://github.com/Jeehut)
- None.
### Changed
- Changed `CheckInfo` id casing convention from snake_case to UpperCamelCase in `blank` template.
Author: [Cihat Gündüz](https://github.com/Jeehut)
- None.
### Deprecated
- None.
### Removed
Expand All @@ -33,5 +31,13 @@ If needed, pluralize to `Tasks`, `PRs` or `Authors` and list multiple entries se
### Security
- None.

## [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)!)
Author: [Cihat Gündüz](https://github.com/Jeehut)
### Changed
- Changed `CheckInfo` id casing convention from snake_case to UpperCamelCase in `blank` template.
Author: [Cihat Gündüz](https://github.com/Jeehut)

## [0.1.0] - 2020-03-22
Initial public release.
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.0-blue.svg"
alt="Version: 0.1.0">
<img src="https://img.shields.io/badge/Version-0.1.1-blue.svg"
alt="Version: 0.1.1">
</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 @@ -90,7 +90,7 @@ This will create the Swift script file `lint.swift` with something like followin

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

// MARK: - Variables
let readmeFile: Regex = #"README\.md"#
Expand Down Expand Up @@ -308,7 +308,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.0
import AnyLint // @Flinesoft ~> 0.1.1
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.0"
public static let currentVersion: String = "0.1.1"

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

0 comments on commit 6538d50

Please sign in to comment.