diff --git a/CHANGELOG.md b/CHANGELOG.md index e5ac289f..0f90f9cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # Changelog -## Unreleased +## 1.25.0 * Update rubocop-performance from 1.15.2 to [1.16.0](https://github.com/rubocop/rubocop-performance/releases/tag/v1.16.0) * Update rubocop from 1.44.1 to [1.48.1](https://github.com/rubocop/rubocop/releases/tag/v1.48.1) + * Enabled [Style/DirEmpty](https://docs.rubocop.org/rubocop/cops_style.html#styledirempty) + * Enabled [Style/RedundantHeredocDelimiterQuotes](https://docs.rubocop.org/rubocop/cops_style.html#styleredundantheredocdelimiterquotes) ## 1.24.3 diff --git a/Gemfile.lock b/Gemfile.lock index c5930228..3818c17e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - standard (1.24.3) + standard (1.25.0) language_server-protocol (~> 3.17.0.2) rubocop (= 1.48.1) rubocop-performance (= 1.16.0) diff --git a/lib/standard/version.rb b/lib/standard/version.rb index 3e68fe3b..fbfe1b41 100644 --- a/lib/standard/version.rb +++ b/lib/standard/version.rb @@ -1,3 +1,3 @@ module Standard - VERSION = Gem::Version.new("1.24.3") + VERSION = Gem::Version.new("1.25.0") end