You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix incorrect plugin version when displaing rubocop -V
This commit fixes incorrect plugin version when displaing `rubocop -V`.
## Before
The RuboCop core version is displayed incorrectly for `rubocop-rake`:
```console
$ bundle exec rubocop -V
1.72.1 (using Parser 3.3.6.0, rubocop-ast 1.38.0, analyzing as Ruby 3.4, running on ruby 3.4.1) [x86_64-darwin23]
- rubocop-rake 1.72.1
```
## After
The correct `rubocop-rake` version is displayed:
```console
$ bundle exec rubocop -V
1.72.1 (using Parser 3.3.6.0, rubocop-ast 1.38.0, analyzing as Ruby 3.4, running on ruby 3.4.1) [x86_64-darwin23]
- rubocop-rake 0.7.0
```
0 commit comments