Skip to content

Commit 0086588

Browse files
387: Properly constrain version of meilisearch ruby gem r=ellnix a=ellnix twiddle-wakka (~>) operator is not meant only for minor versions, its behavior depends on how you specify the version. ~> 0.28 will grab anything >= 0.28 and < 1, while ~> 0.28.0 will grab >= 0.28.0 to < 0.29. For more information, see meilisearch#386 . # Pull Request ## Related issue Fixes meilisearch#386 Co-authored-by: ellnix <[email protected]>
2 parents d0a6f1a + cebc486 commit 0086588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

meilisearch-rails.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ Gem::Specification.new do |s|
3434

3535
s.required_ruby_version = '>= 3.0.0'
3636

37-
s.add_dependency 'meilisearch', '~> 0.28'
37+
s.add_dependency 'meilisearch', '~> 0.28.4'
3838
s.add_dependency 'mutex_m', '~> 0.2'
3939
end

0 commit comments

Comments
 (0)