From 180673b5a5d47f407b2b55dcfed0fb5790f331b4 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Wed, 5 Aug 2020 14:43:06 -0400 Subject: [PATCH] Add Jekyll 3.9.0 release post to main documentation --- History.markdown | 9 ++++-- docs/_docs/history.md | 10 +++++++ .../2020-08-05-jekyll-3-9-0-released.markdown | 28 +++++++++++++++++++ 3 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 docs/_posts/2020-08-05-jekyll-3-9-0-released.markdown diff --git a/History.markdown b/History.markdown index f0d29c80..eca310c1 100644 --- a/History.markdown +++ b/History.markdown @@ -12,7 +12,6 @@ * Update resources.md (#7864) * Extra apostrophes in an URL (#8319) * Clarify target of subordinate clause (#8320) - * [3.x] Add 3.9.0 release post (#8323) ### Development Fixes @@ -25,7 +24,6 @@ ### Bug Fixes * Replace nested conditional with guard clauses (#8294) - * [3.x] Add default language for kramdown syntax highlighting (#8325) ## 4.1.1 / 2020-06-24 @@ -220,6 +218,13 @@ * Fix Kramdown converter based tests for v4.0.x (#8143) +## 3.9.0 / 2020-08-05 + +### Minor Enhancements + +* Allow use of kramdown v2 (#8322) +* Add default language for kramdown syntax highlighting (#8325) + ## 3.8.7 / 2020-05-08 ### Bug Fixes diff --git a/docs/_docs/history.md b/docs/_docs/history.md index b705c0f6..952c08b0 100644 --- a/docs/_docs/history.md +++ b/docs/_docs/history.md @@ -212,6 +212,16 @@ note: This file is autogenerated. Edit /History.markdown instead. - Fix Kramdown converter based tests for v4.0.x ([#8143]({{ site.repository }}/issues/8143)) +## 3.9.0 / 2020-08-05 +{: #v3-9-0} + +### Minor Enhancements +{: #minor-enhancements-v3-9-0} + +* Allow use of kramdown v2 ([#8322]({{ site.repository }}/issues/8322)) +* Add default language for kramdown syntax highlighting ([#8325]({{ site.repository }}/issues/8325)) + + ## 3.8.7 / 2020-05-08 {: #v3-8-7} diff --git a/docs/_posts/2020-08-05-jekyll-3-9-0-released.markdown b/docs/_posts/2020-08-05-jekyll-3-9-0-released.markdown new file mode 100644 index 00000000..f2e79e3c --- /dev/null +++ b/docs/_posts/2020-08-05-jekyll-3-9-0-released.markdown @@ -0,0 +1,28 @@ +--- +title: 'Jekyll 3.9.0 Released' +author: parkr +version: 3.9.0 +categories: [release] +--- + +Jekyll 3.9.0 allows use of kramdown v2, the latest series of kramdown. + +If you choose to upgrade, please note that the GitHub-Flavored Markdown +parser and other features of kramdown v1 are now distributed via +separate gems. If you would like to continue using these features, you will +need to add the gems to your `Gemfile`. They are as follows: + +- GFM parser – `kramdown-parser-gfm` +- coderay syntax highlighter – `kramdown-syntax-coderay` +- mathjaxnode math engine – `kramdown-math-mathjaxnode` +- sskatex math engine – `kramdown-math-sskatex` +- katex math engine – `kramdown-math-katex` +- ritex math engine – `kramdown-math-ritex` +- itex2mml math engine – `kramdown-math-itex2mml` + +Jekyll will require the given gem when the configuration requires it, and +will show a helpful message when a dependency is missing. + +You can check out the patches and see all the details in [the release notes](/docs/history/#v3-9-0) + +Happy Jekylling!