diff --git a/CHANGELOG.md b/CHANGELOG.md index b06a27936..bf5e082ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 2.3.0 (2021-04-28) + * Allow `RSpec/ContextWording` to accept multi-word prefixes. ([@hosamaly][]) * Drop support for ruby 2.4. ([@bquorning][]) * Add `CountAsOne` configuration option to `RSpec/ExampleLength`. ([@stephannv][]) diff --git a/docs/antora.yml b/docs/antora.yml index bd35f744c..c1b2ea6aa 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-rspec title: RuboCop RSpec -version: master +version: '2.3' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index 5efd0665b..8e9024ea0 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.2.0' + STRING = '2.3.0' end end end