diff --git a/CHANGELOG.md b/CHANGELOG.md index ea4d162e6..a14c68ad9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 2.8.0 (2022-01-24) + * Fix `RSpec/FactoryBot/SyntaxMethods` and `RSpec/Capybara/FeatureMethods` to inspect shared groups. ([@pirj][]) * Fix `RSpec/LeadingSubject` failure in non-spec code. ([@pirj][]) * Add bad example to `RSpec/SubjectStub` cop. ([@oshiro3][]) diff --git a/docs/antora.yml b/docs/antora.yml index bd35f744c..8225b7f69 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-rspec title: RuboCop RSpec -version: master +version: '2.8' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index f5e3b1e97..7a0c8f381 100644 --- a/lib/rubocop/rspec/version.rb +++ b/lib/rubocop/rspec/version.rb @@ -4,7 +4,7 @@ module RuboCop module RSpec # Version information for the RSpec RuboCop plugin. module Version - STRING = '2.7.0' + STRING = '2.8.0' end end end