diff --git a/.travis.yml b/.travis.yml index 26901b399..46e3f0795 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,6 @@ cache: bundler language: ruby rvm: - - 1.9.3 - 2.0.0-p648 - 2.1.10 - 2.2.5 diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ca4c4544..b2d61473f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ # Change log -## master (unreleased) +## 1.5.1 (2016-07-20) * Fix `unrecognized parameter RSpec/VerifiedDoubles:IgnoreSymbolicNames` warning. ([@jeffreyc][]) +* Update to rubocop 0.41.2. ([@backus][]) ## 1.5.0 (2016-05-17) @@ -89,6 +90,7 @@ [@andyw8]: https://github.com/andyw8 +[@backus]: https://github.com/backus [@bquorning]: https://github.com/bquorning [@deivid-rodriguez]: https://github.com/deivid-rodriguez [@geniou]: https://github.com/geniou diff --git a/lib/rubocop/rspec/version.rb b/lib/rubocop/rspec/version.rb index 3c4972357..9d76d4db6 100644 --- a/lib/rubocop/rspec/version.rb +++ b/lib/rubocop/rspec/version.rb @@ -5,7 +5,7 @@ module RuboCop module RSpec # Version information for the RSpec RuboCop plugin. module Version - STRING = '1.5.0'.freeze + STRING = '1.5.1'.freeze end end end diff --git a/rubocop-rspec.gemspec b/rubocop-rspec.gemspec index 1568ef24f..59f421381 100644 --- a/rubocop-rspec.gemspec +++ b/rubocop-rspec.gemspec @@ -17,7 +17,7 @@ Gem::Specification.new do |spec| spec.version = RuboCop::RSpec::Version::STRING spec.platform = Gem::Platform::RUBY - spec.required_ruby_version = '>= 1.9.3' + spec.required_ruby_version = '>= 2.0.0' spec.require_paths = ['lib'] spec.files = Dir[ @@ -30,7 +30,7 @@ Gem::Specification.new do |spec| spec.test_files = spec.files.grep(%r{^spec/}) spec.extra_rdoc_files = ['MIT-LICENSE.md', 'README.md'] - spec.add_runtime_dependency 'rubocop', '>= 0.40.0' + spec.add_runtime_dependency 'rubocop', '>= 0.41.2' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec', '>= 3.4'