diff --git a/CHANGELOG.md b/CHANGELOG.md index c51c35a..37cd384 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### [1.0.3] 2023-11-01 + +Changes + +- Ruby gem updates + ### [1.0.2] 2023-08-29 Changes diff --git a/Gemfile.lock b/Gemfile.lock index 09bb3a2..5d0f13f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,13 +1,12 @@ PATH remote: . specs: - immutable_struct_ex (1.0.2) + immutable_struct_ex (1.0.3) GEM remote: https://rubygems.org/ specs: ast (2.4.2) - base64 (0.1.1) byebug (11.1.3) coderay (1.1.3) diff-lcs (1.5.0) @@ -17,7 +16,7 @@ GEM language_server-protocol (3.17.0.3) method_source (1.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) @@ -26,14 +25,14 @@ GEM pry-byebug (3.10.1) byebug (~> 11.0) pry (>= 0.13, < 0.15) - racc (1.7.1) + racc (1.7.2) rainbow (3.1.1) - rake (13.0.6) + rake (13.1.0) reek (6.1.4) kwalify (~> 0.7.0) parser (~> 3.2.0) rainbow (>= 2.0, < 4.0) - regexp_parser (2.8.1) + regexp_parser (2.8.2) rexml (3.2.6) rspec (3.12.0) rspec-core (~> 3.12.0) @@ -48,29 +47,28 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) rspec-support (3.12.1) - rubocop (1.56.2) - 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.18.0) + rubocop-capybara (2.19.0) rubocop (~> 1.41) - rubocop-factory_bot (2.23.1) + rubocop-factory_bot (2.24.0) rubocop (~> 1.33) - rubocop-performance (1.19.0) + rubocop-performance (1.19.1) rubocop (>= 1.7.0, < 2.0) rubocop-ast (>= 0.4.0) - rubocop-rspec (2.23.2) - rubocop (~> 1.33) + rubocop-rspec (2.25.0) + rubocop (~> 1.40) rubocop-capybara (~> 2.17) rubocop-factory_bot (~> 2.22) ruby-progressbar (1.13.0) @@ -80,7 +78,7 @@ GEM simplecov_json_formatter (~> 0.1) simplecov-html (0.12.3) simplecov_json_formatter (0.1.4) - unicode-display_width (2.4.2) + unicode-display_width (2.5.0) PLATFORMS x86_64-darwin-19 @@ -88,7 +86,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - bundler (~> 2.2, >= 2.2.17) + bundler (~> 2.4, >= 2.4.21) immutable_struct_ex! pry-byebug (~> 3.9) rake (~> 13.0, >= 13.0.6) @@ -100,4 +98,4 @@ DEPENDENCIES simplecov (~> 0.22.0) BUNDLED WITH - 2.3.22 + 2.4.21 diff --git a/immutable_struct_ex.gemspec b/immutable_struct_ex.gemspec index b13aedc..51ad9e3 100644 --- a/immutable_struct_ex.gemspec +++ b/immutable_struct_ex.gemspec @@ -32,7 +32,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] - spec.add_development_dependency 'bundler', '~> 2.2', '>= 2.2.17' + spec.add_development_dependency 'bundler', '~> 2.4', '>= 2.4.21' spec.add_development_dependency 'pry-byebug', '~> 3.9' spec.add_development_dependency 'reek', '~> 6.1', '>= 6.1.1' spec.add_development_dependency 'rspec', '>= 3.10' diff --git a/lib/immutable_struct_ex/version.rb b/lib/immutable_struct_ex/version.rb index 38c407e..b769381 100644 --- a/lib/immutable_struct_ex/version.rb +++ b/lib/immutable_struct_ex/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ImmutableStructEx - VERSION = '1.0.2' + VERSION = '1.0.3' end