From 3b430036332f24b24dcb6f8cdad1d2d12acda45d Mon Sep 17 00:00:00 2001 From: Justin Searls Date: Tue, 17 May 2022 06:49:31 -0600 Subject: [PATCH] Bump rubocop Fixes #413 --- Gemfile.lock | 6 +++--- lib/standard/version.rb | 2 +- standard.gemspec | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index a03b4181..da6069a3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,7 +2,7 @@ PATH remote: . specs: standard (1.12.0) - rubocop (= 1.29.0) + rubocop (= 1.29.1) rubocop-performance (= 1.13.3) GEM @@ -24,7 +24,7 @@ GEM rake (13.0.6) regexp_parser (2.4.0) rexml (3.2.5) - rubocop (1.29.0) + rubocop (1.29.1) parallel (~> 1.10) parser (>= 3.1.0.0) rainbow (>= 2.2.2, < 4.0) @@ -33,7 +33,7 @@ GEM rubocop-ast (>= 1.17.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.17.0) + rubocop-ast (1.18.0) parser (>= 3.1.1.0) rubocop-performance (1.13.3) rubocop (>= 1.7.0, < 2.0) diff --git a/lib/standard/version.rb b/lib/standard/version.rb index cc4bca4c..a5744665 100644 --- a/lib/standard/version.rb +++ b/lib/standard/version.rb @@ -1,3 +1,3 @@ module Standard - VERSION = Gem::Version.new('1.12.0') + VERSION = Gem::Version.new("1.12.0") end diff --git a/standard.gemspec b/standard.gemspec index 30a8e9c1..13cb3d7b 100644 --- a/standard.gemspec +++ b/standard.gemspec @@ -19,6 +19,6 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] - spec.add_dependency "rubocop", "1.29.0" + spec.add_dependency "rubocop", "1.29.1" spec.add_dependency "rubocop-performance", "1.13.3" end