Skip to content

Commit

Permalink
Relax ruby version requirements and update gems
Browse files Browse the repository at this point in the history
  • Loading branch information
gangelo committed Jan 7, 2024
1 parent 0069844 commit 8a9bd63
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### [1.0.6] 2024-01-07

Changes

- Relax ruby version requirement to Gem::Requirement.new(">= 3.0.1", "< 4.0").
- Update ruby gems.

### [1.0.5] 2023-12-27

Enhancements
Expand Down
44 changes: 37 additions & 7 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,18 +1,46 @@
PATH
remote: .
specs:
immutable_struct_ex (1.0.5)
immutable_struct_ex (1.0.6)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
bigdecimal (3.1.5)
byebug (11.1.3)
coderay (1.1.3)
concurrent-ruby (1.2.2)
diff-lcs (1.5.0)
docile (1.4.0)
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)
json (2.7.1)
kwalify (0.7.2)
language_server-protocol (3.17.0.3)
method_source (1.0.0)
parallel (1.24.0)
Expand All @@ -28,10 +56,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)
Expand Down Expand Up @@ -60,14 +89,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)
Expand All @@ -79,6 +108,7 @@ GEM
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
unicode-display_width (2.5.0)
zeitwerk (2.6.12)

PLATFORMS
x86_64-darwin-19
Expand Down
2 changes: 1 addition & 1 deletion immutable_struct_ex.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
spec.description = 'Creates an immutable struct in one step.'
spec.homepage = 'https://github.com/gangelo/immutable_struct_ex'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new("~> 3.0")
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.1", "< 4.0")

# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
# to allow pushing to a single host or delete this section to allow pushing to any host.
Expand Down
2 changes: 1 addition & 1 deletion lib/immutable_struct_ex/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ImmutableStructEx
VERSION = '1.0.5'
VERSION = '1.0.6'
end

0 comments on commit 8a9bd63

Please sign in to comment.