diff --git a/CHANGELOG.md b/CHANGELOG.md index dddf220..22f9787 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### 1.5.10 2024-01-07 + +* Changes + * Update ruby gems + * Relax ruby version requirement to Gem::Requirement.new('>= 3.0.1', '< 4.0') + ### 1.5.9 2023-12-27 * Changes diff --git a/Gemfile.lock b/Gemfile.lock index 23d55fb..a9a09fd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - deco_lite (1.5.9) + deco_lite (1.5.10) activemodel (>= 7.0.8, <= 7.12.0) activesupport (>= 7.0.8, <= 7.12.0) immutable_struct_ex (>= 1.0, < 2.0) @@ -33,11 +33,37 @@ GEM docile (1.4.0) drb (2.2.0) ruby2_keywords + dry-configurable (1.1.0) + dry-core (~> 1.0, < 2) + zeitwerk (~> 2.6) + dry-core (1.0.1) + concurrent-ruby (~> 1.0) + zeitwerk (~> 2.6) + dry-inflector (1.0.0) + dry-initializer (3.1.1) + dry-logic (1.5.0) + concurrent-ruby (~> 1.0) + dry-core (~> 1.0, < 2) + zeitwerk (~> 2.6) + dry-schema (1.13.3) + concurrent-ruby (~> 1.0) + dry-configurable (~> 1.0, >= 1.0.1) + dry-core (~> 1.0, < 2) + dry-initializer (~> 3.0) + dry-logic (>= 1.4, < 2) + dry-types (>= 1.7, < 2) + zeitwerk (~> 2.6) + dry-types (1.7.2) + bigdecimal (~> 3.0) + concurrent-ruby (~> 1.0) + dry-core (~> 1.0) + dry-inflector (~> 1.0) + dry-logic (~> 1.4) + zeitwerk (~> 2.6) i18n (1.14.1) concurrent-ruby (~> 1.0) immutable_struct_ex (1.0.5) json (2.7.1) - kwalify (0.7.2) language_server-protocol (3.17.0.3) mad_flatter (3.0.5) activesupport (>= 7.0.8, < 7.2.0) @@ -58,10 +84,11 @@ GEM racc (1.7.3) rainbow (3.1.1) rake (13.1.0) - reek (6.1.4) - kwalify (~> 0.7.0) + reek (6.2.0) + dry-schema (~> 1.13.0) parser (~> 3.2.0) rainbow (>= 2.0, < 4.0) + rexml (~> 3.1) regexp_parser (2.8.3) rexml (3.2.6) rspec (3.12.0) @@ -90,14 +117,14 @@ GEM unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.30.0) parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) + rubocop-capybara (2.20.0) rubocop (~> 1.41) - rubocop-factory_bot (2.24.0) + rubocop-factory_bot (2.25.0) rubocop (~> 1.33) rubocop-performance (1.20.1) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.30.0, < 2.0) - rubocop-rspec (2.25.0) + rubocop-rspec (2.26.1) rubocop (~> 1.40) rubocop-capybara (~> 2.17) rubocop-factory_bot (~> 2.22) @@ -112,6 +139,7 @@ GEM tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.5.0) + zeitwerk (2.6.12) PLATFORMS x86_64-darwin-19 diff --git a/deco_lite.gemspec b/deco_lite.gemspec index 0d9d470..10c7b9e 100644 --- a/deco_lite.gemspec +++ b/deco_lite.gemspec @@ -46,7 +46,7 @@ Gem::Specification.new do |spec| spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib'] - spec.required_ruby_version = Gem::Requirement.new("~> 3.0") + spec.required_ruby_version = Gem::Requirement.new('>= 3.0.1', '< 4.0') spec.add_runtime_dependency 'activemodel', '>= 7.0.8', '<= 7.12.0' spec.add_runtime_dependency 'activesupport', '>= 7.0.8', '<= 7.12.0' diff --git a/lib/deco_lite/version.rb b/lib/deco_lite/version.rb index e3f07a2..983ebd3 100644 --- a/lib/deco_lite/version.rb +++ b/lib/deco_lite/version.rb @@ -2,5 +2,5 @@ # Defines the version of this gem. module DecoLite - VERSION = '1.5.9' + VERSION = '1.5.10' end