Skip to content

Commit

Permalink
Relax reverse_markdown dependency to Support v3 (#729)
Browse files Browse the repository at this point in the history
The `reverse_markdown` library has been updated to version 3. The only
breaking change in this version is the removal of support for
Ruby versions <= 2.6. 

This commit relaxes the dependency to allow versions up to `< 4`,
ensuring compatibility with the latest `reverse_markdown` while
maintaining support for Ruby 2.6.

Closes #728

Note: The CI failure is unrelated to this change and is being tracked in
issue #726.

Co-authored-by: Fred Snyder <[email protected]>
  • Loading branch information
tagliala and castwide authored Jan 11, 2025
1 parent 74fece0 commit 9665c7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solargraph.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'ostruct', '~> 0.6'
s.add_runtime_dependency 'parser', '~> 3.0'
s.add_runtime_dependency 'rbs', '~> 3.0'
s.add_runtime_dependency 'reverse_markdown', '~> 2.0'
s.add_runtime_dependency 'reverse_markdown', '>= 2.0', '< 4'
s.add_runtime_dependency 'rubocop', '~> 1.38'
s.add_runtime_dependency 'thor', '~> 1.0'
s.add_runtime_dependency 'tilt', '~> 2.0'
Expand Down

0 comments on commit 9665c7e

Please sign in to comment.