Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[gemspec] Remove upper bounds on versions for all dependencies #723

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Unreleased
[no unreleased changes yet]
- Remove upper bounds on versions for all dependencies.

## v0.13.0 (2024-09-08)
- Add `--topo-order` (topological order) option to `git log` command
Expand Down
6 changes: 3 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ PATH
remote: .
specs:
fcom (0.13.1.alpha)
activesupport (>= 6, < 8)
memo_wise (>= 1.7, < 2)
rainbow (>= 3.0, < 4)
activesupport (>= 6)
memo_wise (>= 1.7)
rainbow (>= 3.0)
slop (~> 4.8)

GEM
Expand Down
6 changes: 3 additions & 3 deletions fcom.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.add_dependency('activesupport', '>= 6', '< 8')
spec.add_dependency('memo_wise', '>= 1.7', '< 2')
spec.add_dependency('rainbow', '>= 3.0', '< 4')
spec.add_dependency('activesupport', '>= 6')
spec.add_dependency('memo_wise', '>= 1.7')
spec.add_dependency('rainbow', '>= 3.0')
spec.add_dependency('slop', '~> 4.8')

required_ruby_version = File.read('.ruby-version').rstrip.sub(/\A(\d+\.\d+)\.\d+\z/, '\1.0')
Expand Down
Loading