diff --git a/Changelog.md b/Changelog.md index 778033d..ca7da63 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,10 @@ - Nothing yet! +## 0.23.0 + +- Migrates from individual SwiftLint invocations to using the `--use-script-input-files` option. See [#135](https://github.com/ashfurrow/danger-ruby-swiftlint/pull/135). + ## 0.22.0 - Adds support to filter issues found in git diff. See [#132](https://github.com/ashfurrow/danger-ruby-swiftlint/pull/132). diff --git a/Gemfile.lock b/Gemfile.lock index a25515c..07d64f8 100755 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - danger-swiftlint (0.22.0) + danger-swiftlint (0.23.0) danger rake (> 10) thor (~> 0.19) diff --git a/lib/version.rb b/lib/version.rb index 17b3cbf..ac41a1d 100755 --- a/lib/version.rb +++ b/lib/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true module DangerSwiftlint - VERSION = '0.22.0' + VERSION = '0.23.0' SWIFTLINT_VERSION = '0.33.1' end