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 9, 2023
1 parent a18ae2b commit b69f38e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Expand Up @@ -19,6 +19,20 @@ If needed, pluralize to `Tasks`, `PRs` or `Authors` and list multiple entries se

## [Unreleased]
### Added
- None.
### Changed
- None.
### Deprecated
- None.
### Removed
- None.
### Fixed
- None.
### Security
- None.

## [0.11.0] - 2023-04-09
### Added
- Added a new `--unvalidated` (`-u`) option for running all checks without running the validations provided, such as testing for `matchingExamples` and `nonMatchingExamples`. Use with cuation.
### Changed
- Some internal code clean-up.
Expand Down
2 changes: 1 addition & 1 deletion Formula/anylint.rb
Expand Up @@ -4,7 +4,7 @@ class Anylint < Formula
url "https://github.com/FlineDev/AnyLint.git", :tag => "0.10.1", :revision => "84ee29f12ae7297e917c9a3339dfb25e5dca6dd5"
head "https://github.com/FlineDev/AnyLint.git"

depends_on :xcode => ["12.5", :build]
depends_on :xcode => ["14.0", :build]
depends_on "swift-sh"

def install
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -17,8 +17,8 @@
alt="Coverage"/>
</a>
<a href="https://github.com/FlineDev/AnyLint/releases">
<img src="https://img.shields.io/badge/Version-0.10.1-blue.svg"
alt="Version: 0.10.1">
<img src="https://img.shields.io/badge/Version-0.11.0-blue.svg"
alt="Version: 0.11.0">
</a>
<a href="https://github.com/FlineDev/AnyLint/blob/main/LICENSE">
<img src="https://img.shields.io/badge/License-MIT-lightgrey.svg"
Expand Down
2 changes: 1 addition & 1 deletion Sources/Utility/Constants.swift
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.10.1"
public static let currentVersion: String = "0.11.0"

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

0 comments on commit b69f38e

Please sign in to comment.