diff --git a/CHANGELOG.md b/CHANGELOG.md index c9391aa1b..f65e661fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,13 @@ ## Master (Unreleased) +## 2.4.0 (2021-06-09) + * Update `RSpec/FilePath` to check suffix when given a non-constant top-level node (e.g. features). ([@topalovic][]) * Add missing documentation for `single_statement_only` style of `RSpec/ImplicitSubject` cop. ([@tejasbubane][]) * Fix an exception in `DescribedClass` when accessing a constant on a variable in a spec that is nested in a namespace. ([@rrosenblum][]) * Add new `RSpec/IdenticalEqualityAssertion` cop. ([@tejasbubane][]) -* Add `RSpec/Rails/AvoidSetupHook cop. ([@paydaylight][]) +* Add `RSpec/Rails/AvoidSetupHook` cop. ([@paydaylight][]) * Fix false negative in `RSpec/ExpectChange` cop with block style and chained method call. ([@tejasbubane][]) ## 2.3.0 (2021-04-28) diff --git a/docs/antora.yml b/docs/antora.yml index bd35f744c..84ca297f8 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-rspec title: RuboCop RSpec -version: master +version: '2.4' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index 8e9024ea0..97e0d7ecd 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.3.0' + STRING = '2.4.0' end end end