Skip to content

Commit f7aecf0

Browse files
authored
Merge pull request #2151 from rubocop/release
Bump version to 3.9.0
2 parents 91ad43d + 893a25b commit f7aecf0

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.9.0 (2026-01-07)
6+
57
- Fix a false positive for `RSpec/LeakyLocalVariable` when variables are used only in example metadata (e.g., skip messages). ([@ydah])
68
- Fix a false positive for `RSpec/ScatteredSetup` when the hook is defined inside a class method. ([@d4rky-pl])
79
- Fix a false positive for `RSpec/DescribedClass` inside dynamically evaluated blocks (`class_eval`, `module_eval`, `instance_eval`, `class_exec`, `module_exec`, `instance_exec`). ([@sucicfilip])

config/default.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -763,7 +763,7 @@ RSpec/Output:
763763
Enabled: pending
764764
AutoCorrect: contextual
765765
SafeAutoCorrect: false
766-
VersionAdded: "<<next>>"
766+
VersionAdded: '3.9'
767767
Reference: https://www.rubydoc.info/gems/rubocop-rspec/RuboCop/Cop/RSpec/Output
768768

769769
RSpec/OverwritingSetup:

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.9'
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
@@ -4734,7 +4734,7 @@ end
47344734
| Pending
47354735
| Yes
47364736
| Command-line only (Unsafe)
4737-
| <<next>>
4737+
| 3.9
47384738
| -
47394739
|===
47404740

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.8.0'
7+
STRING = '3.9.0'
88
end
99
end
1010
end

0 commit comments

Comments
 (0)