From 6538d50a8280e1efe53f697a98f764d6711d4dcc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cihat=20Gu=CC=88ndu=CC=88z?= Date: Mon, 23 Mar 2020 12:22:44 +0100 Subject: [PATCH] Bump version num & finalize new Changelog section --- CHANGELOG.md | 14 ++++++++++---- README.md | 8 ++++---- Sources/Utility/Constants.swift | 2 +- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee3e43d..b42f7fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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. diff --git a/README.md b/README.md index fa79c1a..ced2f50 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,8 @@ alt="Coverage"/> - Version: 0.1.0 + Version: 0.1.1 0.1.0 +import AnyLint // @Flinesoft ~> 0.1.1 // MARK: - Variables let readmeFile: Regex = #"README\.md"# @@ -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 diff --git a/Sources/Utility/Constants.swift b/Sources/Utility/Constants.swift index d8b5041..f1adc14 100644 --- a/Sources/Utility/Constants.swift +++ b/Sources/Utility/Constants.swift @@ -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"