diff --git a/Changelog.md b/Changelog.md index 385c241..de471a4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -6,9 +6,13 @@ - Nothing yet! +## 0.26.0 + +- No longer infers `config_file` parameter if unspecified. See [#160](https://github.com/ashfurrow/danger-ruby-swiftlint/issues/160). + ## 0.25.0 -- **Possible Breaking Change**: Changes the plugin so that it does not change the current working directory when using the `directory` option. That is to say, calling `Swiftlint.lint(directory: ...)` no longer changes the return value of `Dir.pwd`, which could inadvertently affect subsequent Dangerfile execution. See [#157](https://github.com/ashfurrow/danger-ruby-swiftlint/issues/157) +- **Possible Breaking Change**: Changes the plugin so that it does not change the current working directory when using the `directory` option. That is to say, calling `Swiftlint.lint(directory: ...)` no longer changes the return value of `Dir.pwd`, which could inadvertently affect subsequent Dangerfile execution. See [#157](https://github.com/ashfurrow/danger-ruby-swiftlint/issues/157). ## 0.24.5 diff --git a/Gemfile.lock b/Gemfile.lock index eea3050..ab49b10 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - danger-swiftlint (0.25.0) + danger-swiftlint (0.26.0) danger rake (> 10) thor (~> 0.19) diff --git a/lib/version.rb b/lib/version.rb index e5aecc5..caa18d6 100755 --- a/lib/version.rb +++ b/lib/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true module DangerSwiftlint - VERSION = '0.25.0' + VERSION = '0.26.0' SWIFTLINT_VERSION = '0.41.0' end