diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fc620c7..59dd8bc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.9.0 + +* Rule change to `Layout/CaseIndentation` to have the `when` and `in`s inside a case statement aligned with the `end` of the case. The `end` will be aligned with a variable instead of the `case` keyword if applicable. + ## 1.8.0 * Update rubocop from 1.25.1 to [1.26.0](https://github.com/rubocop/rubocop/tag/v1.26.0) diff --git a/Gemfile.lock b/Gemfile.lock index d19533be..17a20ba3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - standard (1.8.0) + standard (1.9.0) rubocop (= 1.26.0) rubocop-performance (= 1.13.3) @@ -14,7 +14,7 @@ GEM gimme (0.5.0) method_source (1.0.0) minitest (5.15.0) - parallel (1.21.0) + parallel (1.22.0) parser (3.1.1.0) ast (~> 2.4.1) pry (0.14.1) diff --git a/lib/standard/version.rb b/lib/standard/version.rb index 1fa6617b..5e96c5e1 100644 --- a/lib/standard/version.rb +++ b/lib/standard/version.rb @@ -1,3 +1,3 @@ module Standard - VERSION = Gem::Version.new('1.8.0') + VERSION = Gem::Version.new('1.9.0') end