Skip to content

Commit 4ecc2aa

Browse files
committed
Release v3.7.0
1 parent 7abc671 commit 4ecc2aa

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Master (Unreleased)
44

5+
## 3.7.0 (2025-09-01)
6+
57
- Mark `RSpec/IncludeExamples` as `SafeAutoCorrect: false`. ([@yujideveloper])
68
- Fix a false positive for `RSpec/LeakyConstantDeclaration` when defining constants in explicit namespaces. ([@naveg])
79
- Add support for error matchers (`raise_exception` and `raise_error`) to `RSpec/Dialect`. ([@lovro-bikic])

config/default.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -544,7 +544,7 @@ RSpec/IncludeExamples:
544544
Enabled: pending
545545
SafeAutoCorrect: false
546546
VersionAdded: '3.6'
547-
VersionChanged: "<<next>>"
547+
VersionChanged: '3.7'
548548
Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/IncludeExamples
549549

550550
RSpec/IndexedLet:

docs/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: rubocop-rspec
22
title: RuboCop RSpec
3-
version: ~
3+
version: '3.7'
44
nav:
55
- modules/ROOT/nav.adoc

docs/modules/ROOT/pages/cops_rspec.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2782,7 +2782,7 @@ it { expect(named_subject).to be_truthy }
27822782
| Yes
27832783
| Always (Unsafe)
27842784
| 3.6
2785-
| <<next>>
2785+
| 3.7
27862786
|===
27872787
27882788
Checks for usage of `include_examples`.

lib/rubocop/rspec/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module RuboCop
44
module RSpec
55
# Version information for the RSpec RuboCop plugin.
66
module Version
7-
STRING = '3.6.0'
7+
STRING = '3.7.0'
88
end
99
end
1010
end

0 commit comments

Comments
 (0)