Skip to content

Commit

Permalink
Correct gemspec to allow ruby '>= 3.0.1', '< 4.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
gangelo committed Jan 6, 2024
1 parent f302899 commit bdda5a0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [2.4.2] 2024-01-06

Changes

- Correct gemspec to allow ruby ['>= 3.0.1', '< 4.0'].

## [2.4.1] 2024-01-05

Changes
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
dsu (2.4.1)
dsu (2.4.2)
activemodel (>= 7.0.8, < 8.0)
activesupport (>= 7.0.8, < 8.0)
colorize (>= 0.8.1, < 1.0)
Expand Down
2 changes: 1 addition & 1 deletion dsu.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
DESC
spec.homepage = 'https://github.com/gangelo/dsu'
spec.license = 'MIT'
spec.required_ruby_version = '>= 3.0.1'
spec.required_ruby_version = ['>= 3.0.1', '< 4.0']

# spec.metadata["allowed_push_host"] = "TODO: Set to your gem server 'https://example.com'"

Expand Down
2 changes: 1 addition & 1 deletion lib/dsu/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module Dsu
VERSION_REGEX = /\A\d+\.\d+\.\d+(\.(alpha|rc)\.\d+)?\z/
VERSION = '2.4.1'
VERSION = '2.4.2'
end

0 comments on commit bdda5a0

Please sign in to comment.