Riverscapes / riverscapes-jekyll-theme

Gem-based GHPages theme that all docs will consume from
https://riverscapes.github.io/riverscapes-jekyll-theme/
MIT License
0 stars 2 forks source link

Upgrade Jekyll to 3.9.0 #20

Closed MattReimer closed 4 years ago

MattReimer commented 4 years ago

There are a few challenges with what might look like a minor version bump.

Sites are also going to need a new Gemfile if people want to run bundle exec jekyll serve

Lookin' at you @joewheaton and @philipbaileynar

Here's the new one. Notice jekyll is now 3.9.0 and we have a new dependency of kramdown-parser-gfm

# A note about this GEM file:
# This gemfile is only to help you run `bundle exec jekyll serve` on your
# local machine. It is not used in any way by the build system
# frozen_string_literal: true

source "https://rubygems.org"
gem "jekyll", "3.9.0"
gem "jekyll-remote-theme", "0.4.2"
gem "kramdown-parser-gfm", "1.1.0"

Just a quick reminder that you'll need to run bundle update jekyll after updating the Gemfile but before using jekyll to make sure it gets the new version. (Jekyll will throw an excellent warning with the same instructions if you forget)