diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fb8a68..ae66a3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## 0.13.2 - 2024-10-23 +### Changed +- Updated dependencies + ## 0.13.1 - 2024-07-15 ### Changed - Removed Slack references diff --git a/Gemfile.lock b/Gemfile.lock index 98decd0..a99794c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,13 +1,13 @@ PATH remote: . specs: - rubocop-vendor (0.13.1) + rubocop-vendor (0.13.2) rubocop GEM remote: https://rubygems.org/ specs: - activesupport (7.2.1) + activesupport (7.2.1.1) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.3.1) @@ -48,44 +48,42 @@ GEM ast (~> 2.4.1) racc polyglot (0.3.5) - process_executer (1.1.0) + process_executer (1.2.0) public_suffix (6.0.1) racc (1.8.1) - rack (3.1.7) + rack (3.1.8) rainbow (3.1.1) rake (13.2.1) rchardet (1.8.0) regexp_parser (2.9.2) - rexml (3.3.7) rspec (3.13.0) rspec-core (~> 3.13.0) rspec-expectations (~> 3.13.0) rspec-mocks (~> 3.13.0) - rspec-core (3.13.1) + rspec-core (3.13.2) rspec-support (~> 3.13.0) rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) - rspec-mocks (3.13.1) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) - rubocop (1.65.1) + rubocop (1.66.1) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 2.4, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.31.1, < 2.0) + rubocop-ast (>= 1.32.2, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.32.3) parser (>= 3.3.1.0) rubocop-factory_bot (2.26.1) rubocop (~> 1.61) - rubocop-performance (1.21.1) + rubocop-performance (1.22.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) rubocop-rails (2.26.2) @@ -93,7 +91,7 @@ GEM rack (>= 1.1) rubocop (>= 1.52.0, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (3.0.5) + rubocop-rspec (3.1.0) rubocop (~> 1.61) ruby-progressbar (1.13.0) securerandom (0.3.1) @@ -103,18 +101,18 @@ GEM simplecov_json_formatter (~> 0.1) simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) - standard (1.40.0) + standard (1.41.1) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) - rubocop (~> 1.65.0) + rubocop (~> 1.66.0) standard-custom (~> 1.0.0) - standard-performance (~> 1.4) + standard-performance (~> 1.5) standard-custom (1.0.2) lint_roller (~> 1.0) rubocop (~> 1.50) - standard-performance (1.4.0) + standard-performance (1.5.0) lint_roller (~> 1.1) - rubocop-performance (~> 1.21.0) + rubocop-performance (~> 1.22.0) standard-rails (1.2.0) lint_roller (~> 1.0) rubocop-rails (~> 2.26.0) diff --git a/lib/rubocop/vendor/version.rb b/lib/rubocop/vendor/version.rb index 3160e3d..a4714e1 100644 --- a/lib/rubocop/vendor/version.rb +++ b/lib/rubocop/vendor/version.rb @@ -2,6 +2,6 @@ module RuboCop module Vendor - VERSION = '0.13.1' + VERSION = '0.13.2' end end diff --git a/tasks/cops_documentation.rake b/tasks/cops_documentation.rake index 0624673..30420c1 100644 --- a/tasks/cops_documentation.rake +++ b/tasks/cops_documentation.rake @@ -69,7 +69,7 @@ task generate_cops_documentation: :yard_for_generate_documentation do end def h4(title) - content = +"#### #{title}\n" + content = "#### #{title}\n" content << "\n" content end @@ -164,7 +164,7 @@ task generate_cops_documentation: :yard_for_generate_documentation do end return if selected_cops.empty? - content = +"# #{department}\n" + content = "# #{department}\n" selected_cops.each do |cop| content << print_cop_with_doc(cop, config) end @@ -201,7 +201,7 @@ task generate_cops_documentation: :yard_for_generate_documentation do type_title = department[0].upcase + department[1..] filename = "cops_#{department.downcase}.md" - content = +"#### Department [#{type_title}](#{filename})\n\n" + content = "#### Department [#{type_title}](#{filename})\n\n" selected_cops.each do |cop| anchor = cop.cop_name.sub('/', '').downcase content << "* [#{cop.cop_name}](#{filename}##{anchor})\n"