diff --git a/CHANGELOG.md b/CHANGELOG.md index a932dab9a..de307ae25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 3.0.2 (2024-07-02) + - Fix wrong autocorrect for `RSpec/ScatteredSetup` when hook contains heredoc. ([@earlopain]) - Fix false negative for `RSpec/PredicateMatcher` when expectation contains custom failure message. ([@earlopain]) - Facilitate the 3.0 upgrade flow with proper extracted cop messages. ([@jeppester]) diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index 79d587230..7d8dadbd0 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 = '3.0.1' + STRING = '3.0.2' end end end