diff --git a/CHANGELOG.md b/CHANGELOG.md index c5664ddac..3a430230a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 3.5.0 (2025-02-16) + - Don't let `RSpec/PredicateMatcher` replace `respond_to?` with two arguments with the RSpec `respond_to` matcher. ([@bquorning]) - Fix `RSpec/PredicateMatcher` support for `eql` and `equal` matchers. ([@bquorning]) - Pluginfy RuboCop RSpec. ([@koic]) diff --git a/docs/antora.yml b/docs/antora.yml index 51a533a15..fe1caf800 100644 --- a/docs/antora.yml +++ b/docs/antora.yml @@ -1,5 +1,5 @@ name: rubocop-rspec title: RuboCop RSpec -version: ~ +version: '3.5' nav: - modules/ROOT/nav.adoc diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index 74f571856..3389c5ce8 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.4.0' + STRING = '3.5.0' end end end