diff --git a/CHANGELOG.md b/CHANGELOG.md index ef0862cf2..dcbe25646 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 2.21.0 (2023-05-05) + - Fix a false positive in `RSpec/IndexedLet` with suffixes after index-like numbers. ([@pirj]) - Fix an error for `RSpec/Rails/HaveHttpStatus` with comparison with strings containing non-numeric characters. ([@ydah]) - Fix an error for `RSpec/MatchArray` when `match_array` with no argument. ([@ydah]) diff --git a/docs/antora.yml b/docs/antora.yml index 51a533a15..fed0e473e 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-rspec title: RuboCop RSpec -version: ~ +version: '2.21' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index 11d40c80b..a8216694e 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.20.0' + STRING = '2.21.0' end end end