From bb198f839d2c4740a15c2eb7261957f46a85fc6e Mon Sep 17 00:00:00 2001 From: Kevin Olbrich Date: Thu, 2 Nov 2023 09:02:29 -0400 Subject: [PATCH] Version 4.0.1, update dependencies (#332) * Version 4.0.1 * update dependencies --- Gemfile.lock | 38 ++++++++++++++++++-------------------- lib/ruby_units/version.rb | 2 +- 2 files changed, 19 insertions(+), 21 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index e4a0029..266f123 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,14 +1,13 @@ PATH remote: . specs: - ruby-units (4.0.0) + ruby-units (4.0.1) GEM remote: https://rubygems.org/ specs: ast (2.4.2) backport (1.2.0) - base64 (0.1.1) benchmark (0.2.1) coderay (1.1.3) debug (1.8.0) @@ -17,8 +16,8 @@ GEM diff-lcs (1.5.0) docile (1.4.0) e2mmap (0.1.0) - ffi (1.16.1) - ffi (1.16.1-java) + ffi (1.16.3) + ffi (1.16.3-java) formatador (1.1.0) guard (2.18.1) formatador (>= 0.2.4) @@ -36,7 +35,7 @@ GEM rspec (>= 2.99.0, < 4.0) io-console (0.6.0) io-console (0.6.0-java) - irb (1.8.1) + irb (1.8.3) rdoc reline (>= 0.3.8) jar-dependencies (0.4.1) @@ -67,7 +66,7 @@ GEM nenv (~> 0.1) shellany (~> 0.0) parallel (1.23.0) - parser (3.2.2.3) + parser (3.2.2.4) ast (~> 2.4.1) racc pry (0.14.2) @@ -77,14 +76,14 @@ GEM coderay (~> 1.1) method_source (~> 1.0) spoon (~> 0.0) - psych (5.1.0) + psych (5.1.1.1) stringio - psych (5.1.0-java) + psych (5.1.1.1-java) jar-dependencies (>= 0.1.7) - racc (1.7.1) - racc (1.7.1-java) + racc (1.7.2) + racc (1.7.2-java) rainbow (3.1.1) - rake (13.0.6) + rake (13.1.0) rb-fsevent (0.11.2) rb-inotify (0.10.1) ffi (~> 1.0) @@ -92,8 +91,8 @@ GEM rdoc (6.5.0) psych (>= 4.0.0) redcarpet (3.6.0) - regexp_parser (2.8.1) - reline (0.3.8) + regexp_parser (2.8.2) + reline (0.3.9) io-console (~> 0.5) reverse_markdown (2.1.1) nokogiri @@ -111,19 +110,18 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) rspec-support (3.12.1) - rubocop (1.56.4) - base64 (~> 0.1.1) + rubocop (1.57.2) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) - parser (>= 3.2.2.3) + parser (>= 3.2.2.4) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) rexml (>= 3.2.5, < 4.0) rubocop-ast (>= 1.28.1, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.29.0) + rubocop-ast (1.30.0) parser (>= 3.2.1.0) rubocop-capybara (2.19.0) rubocop (~> 1.41) @@ -131,8 +129,8 @@ GEM rubocop (~> 1.33) rubocop-rake (0.6.0) rubocop (~> 1.0) - rubocop-rspec (2.24.1) - rubocop (~> 1.33) + rubocop-rspec (2.25.0) + rubocop (~> 1.40) rubocop-capybara (~> 2.17) rubocop-factory_bot (~> 2.22) ruby-maven (3.3.13) @@ -168,7 +166,7 @@ GEM stringio (3.0.8) terminal-notifier (2.0.0) terminal-notifier-guard (1.7.0) - thor (1.2.2) + thor (1.3.0) tilt (2.3.0) unicode-display_width (2.5.0) webrick (1.8.1) diff --git a/lib/ruby_units/version.rb b/lib/ruby_units/version.rb index 75d7d22..2b7e532 100644 --- a/lib/ruby_units/version.rb +++ b/lib/ruby_units/version.rb @@ -1,5 +1,5 @@ module RubyUnits class Unit < Numeric - VERSION = '4.0.0'.freeze + VERSION = '4.0.1'.freeze end end