Skip to content

Commit

Permalink
Allow Jekyll 4.1
Browse files Browse the repository at this point in the history
Jekyll 4.1.x adds some non-breaking changes, with we may find useful.

Version 4.1.0 is slightly broken, that is why it is explicitly
disallowed.

See: https://jekyllrb.com/news/2020/06/24/jekyll-4-1-1-released/
  • Loading branch information
skalee committed Jul 6, 2020
1 parent 35e2b9a commit 7f084bf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion jekyll-geolexica.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,12 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_runtime_dependency "jekyll", ">= 3.8.5", "< 4.1"
# Jekyll 4.1.0 adds some breaking changes which are reverted in 4.1.1.
# I doubt we should be worried, but there is no good reason to allow them
# either.
# See: https://jekyllrb.com/news/2020/06/24/jekyll-4-1-1-released/
spec.add_runtime_dependency "jekyll", ">= 3.8.5", "< 4.2", "!= 4.1.0"

spec.add_runtime_dependency "jekyll-asciidoc"

spec.add_development_dependency "bundler", "~> 2.1"
Expand Down

0 comments on commit 7f084bf

Please sign in to comment.