Skip to content

Commit b2a2b3d

Browse files
committed
Relax fugit dependency version constraint
As per fugit's changelog, fugit follows SemVer. This change allows use of the newly released fugit 1.12. Ref: https://github.com/floraison/fugit/blob/7d1c8b43ecf7de87aef4f8ab2678fea41ca0486b/CHANGELOG.md?plain=1#L215
1 parent 5c4f452 commit b2a2b3d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PATH
55
activejob (>= 7.1)
66
activerecord (>= 7.1)
77
concurrent-ruby (>= 1.3.1)
8-
fugit (~> 1.11.0)
8+
fugit (~> 1.11)
99
railties (>= 7.1)
1010
thor (>= 1.3.1)
1111

solid_queue.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
2929
spec.add_dependency "activejob", rails_version
3030
spec.add_dependency "railties", rails_version
3131
spec.add_dependency "concurrent-ruby", ">= 1.3.1"
32-
spec.add_dependency "fugit", "~> 1.11.0"
32+
spec.add_dependency "fugit", "~> 1.11"
3333
spec.add_dependency "thor", ">= 1.3.1"
3434

3535
spec.add_development_dependency "appraisal"

0 commit comments

Comments
 (0)