diff --git a/CHANGELOG.md b/CHANGELOG.md index 7240eb989..165642425 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 1.25.1 (2018-04-10) + * Fix false positive in `RSpec/Pending` cop when pending is used as a method name. ([@Darhazer][]) * Fix `FactoryBot/DynamicAttributeDefinedStatically` false positive when using symbol proc argument for a sequence. ([@tdeo][]) diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index a5912dcbb..21c22799b 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 = '1.25.0'.freeze + STRING = '1.25.1'.freeze end end end