From 3ed4dbd227221eea600d362297eefc15226d75b9 Mon Sep 17 00:00:00 2001 From: Pat Hawks Date: Tue, 1 May 2018 11:56:01 -0500 Subject: [PATCH] Release :gem: 3.8.1 --- History.markdown | 2 +- docs/_config.yml | 2 +- docs/_docs/history.md | 10 ++++++++++ .../2018-05-01-jekyll-3-8-1-released.markdown | 20 +++++++++++++++++++ docs/latest_version.txt | 2 +- lib/jekyll/version.rb | 2 +- 6 files changed, 34 insertions(+), 4 deletions(-) create mode 100644 docs/_posts/2018-05-01-jekyll-3-8-1-released.markdown diff --git a/History.markdown b/History.markdown index 4b6f7d54..5cef9fef 100644 --- a/History.markdown +++ b/History.markdown @@ -1,4 +1,4 @@ -## HEAD +## 3.8.1 / 2018-05-01 ### Bug Fixes diff --git a/docs/_config.yml b/docs/_config.yml index 2422b6a1..4084cdd6 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,5 +1,5 @@ --- -version: 3.8.0 +version: 3.8.1 name: Jekyll • Simple, blog-aware, static sites description: Transform your plain text into static websites and blogs url: https://jekyllrb.com diff --git a/docs/_docs/history.md b/docs/_docs/history.md index 660125fb..e30472b2 100644 --- a/docs/_docs/history.md +++ b/docs/_docs/history.md @@ -4,6 +4,16 @@ permalink: "/docs/history/" note: This file is autogenerated. Edit /History.markdown instead. --- +## 3.8.1 / 2018-05-01 +{: #v3-8-1} + +### Bug Fixes +{: #bug-fixes-v3-8-1} + +- Fix rendering Liquid constructs in excerpts ([#6945]({{ site.repository }}/issues/6945)) +- Liquify documents unless published == false ([#6959]({{ site.repository }}/issues/6959)) + + ## 3.8.0 / 2018-04-19 {: #v3-8-0} diff --git a/docs/_posts/2018-05-01-jekyll-3-8-1-released.markdown b/docs/_posts/2018-05-01-jekyll-3-8-1-released.markdown new file mode 100644 index 00000000..b750c39d --- /dev/null +++ b/docs/_posts/2018-05-01-jekyll-3-8-1-released.markdown @@ -0,0 +1,20 @@ +--- +title: 'Jekyll 3.8.1 Released' +date: 2018-05-01 11:56:01 -0500 +author: pathawks +version: 3.8.1 +categories: [release] +--- + +Happy May Day :tada: + +The Jekyll team is happy to announce the release of `v3.8.1`, which fixes +a couple of bugs that were introduced two weeks ago in `v3.8.0`. If you have +experienced trouble regarding post excerpts or non-published posts, this release +should be the remedy. Thanks to @Chaosed0 and @domLocalHeroes for originally +reporting these issues, and to @ashmaroli for fixing them so quickly. + +As a reminder, we have started work on Jekyll 4.0. If there are any +features that you would love to see added to Jekyll, or any pain points you +would like to see removed, please do add your ideas to the [Jekyll 4.0 idea +list](https://github.com/jekyll/jekyll/issues/6948). diff --git a/docs/latest_version.txt b/docs/latest_version.txt index 19811903..f2807196 100644 --- a/docs/latest_version.txt +++ b/docs/latest_version.txt @@ -1 +1 @@ -3.8.0 +3.8.1 diff --git a/lib/jekyll/version.rb b/lib/jekyll/version.rb index e1425fe4..f958b6af 100644 --- a/lib/jekyll/version.rb +++ b/lib/jekyll/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Jekyll - VERSION = "3.8.0".freeze + VERSION = "3.8.1".freeze end