diff --git a/CHANGELOG.md b/CHANGELOG.md index 60b6228..bd3eb40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] -## 7.3.0 - 2023-01-11 +## 7.4.0 - 2024-01-14 +### Changed +- Add rubocop-factory_bot + +## 7.3.0 - 2024-01-11 ### Changed - Disable some cops which don't add significant value diff --git a/Gemfile.lock b/Gemfile.lock index e2d0cbd..f40b5df 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,8 @@ PATH remote: . specs: - ws-style (7.3.0) + ws-style (7.4.0) + rubocop-factory_bot (>= 2.25.1) rubocop-rspec (>= 2.2.0) rubocop-vendor (>= 0.11) standard (>= 1.30.1) @@ -87,8 +88,8 @@ GEM parser (>= 3.2.1.0) rubocop-capybara (2.20.0) rubocop (~> 1.41) - rubocop-factory_bot (2.25.0) - rubocop (~> 1.33) + rubocop-factory_bot (2.25.1) + rubocop (~> 1.41) rubocop-performance (1.20.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.30.0, < 2.0) diff --git a/core.yml b/core.yml index 2078a09..a71bf4e 100644 --- a/core.yml +++ b/core.yml @@ -11,6 +11,7 @@ require: - standard-custom - rubocop-performance - rubocop-vendor + - rubocop-factory_bot inherit_gem: standard: config/base.yml diff --git a/lib/ws/style/version.rb b/lib/ws/style/version.rb index a1f2d91..ab247f2 100644 --- a/lib/ws/style/version.rb +++ b/lib/ws/style/version.rb @@ -1,5 +1,5 @@ module Ws module Style - VERSION = '7.3.0'.freeze + VERSION = '7.4.0'.freeze end end diff --git a/ws-style.gemspec b/ws-style.gemspec index 22d20b0..7928961 100644 --- a/ws-style.gemspec +++ b/ws-style.gemspec @@ -27,6 +27,7 @@ Gem::Specification.new do |s| s.add_dependency 'standard-rails', '>= 0.1.0' s.add_dependency 'rubocop-rspec', '>= 2.2.0' s.add_dependency 'rubocop-vendor', '>= 0.11' + s.add_dependency 'rubocop-factory_bot', '>= 2.25.1' s.add_development_dependency 'bundler' s.add_development_dependency 'bundler-audit'