diff --git a/CHANGELOG.md b/CHANGELOG.md index 5333139c6..06ba857b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 2.10.0 (2022-04-19) + * Fix a false positive for `RSpec/EmptyExampleGroup` when expectations in case statement. ([@ydah][]) * Add `RSpec/VerifiedDoubleReference` cop. ([@t3h2mas][]) * Make `RSpec/BeNil` cop configurable with a `be_nil` style and a `be` style. ([@bquorning][]) diff --git a/docs/antora.yml b/docs/antora.yml index bd35f744c..3a693a740 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-rspec title: RuboCop RSpec -version: master +version: '2.10' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index fc86f165e..7bba0f788 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.9.0' + STRING = '2.10.0' end end end