From 444797b2f76e7db06a931e8d01ee0db9efa7cea0 Mon Sep 17 00:00:00 2001 From: Maxim Krizhanovsky Date: Sat, 7 Apr 2018 13:39:42 +0300 Subject: [PATCH] Bump version --- CHANGELOG.md | 2 ++ lib/rubocop/rspec/version.rb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e62035361..22c4d2652 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Master (Unreleased) +## 1.25.0 (2018-04-07) + * Add `RSpec/SharedExamples` cop to enforce consistent usage of string to titleize shared examples. ([@anthony-robin][]) * Add `RSpec/Be` cop to enforce passing argument to the generic `be` matcher. ([@Darhazer][]) * Fix false positives in `StaticAttributeDefinedDynamically` and `ReturnFromStub` when a const is used in an array or hash. ([@Darhazer][]) diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index c28ab9db4..a5912dcbb 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.24.0'.freeze + STRING = '1.25.0'.freeze end end end