Merge branch '3.8-stable'

This commit is contained in:
Pat Hawks 2018-05-01 15:12:42 -05:00
commit b0a1c42222
No known key found for this signature in database
GPG Key ID: F1746FF5F18B3D1B
6 changed files with 40 additions and 8 deletions

View File

@ -17,11 +17,6 @@
* use jekyll-compose if installed (#6932) * use jekyll-compose if installed (#6932)
* Memoize computing excerpt's relative_path (#6951) * Memoize computing excerpt's relative_path (#6951)
### Bug Fixes
* Fix rendering Liquid constructs in excerpts (#6945)
* Liquify documents unless published == false (#6959)
### Major Enhancements ### Major Enhancements
* Remove unused error class (#6511) * Remove unused error class (#6511)
@ -34,6 +29,13 @@
* Remove unnecessary Jekyll::Page constant (#6770) * Remove unnecessary Jekyll::Page constant (#6770)
* Loggers should accept both numbers and symbols (#6967) * Loggers should accept both numbers and symbols (#6967)
## 3.8.1 / 2018-05-01
### Bug Fixes
* Fix rendering Liquid constructs in excerpts (#6945)
* Liquify documents unless published == false (#6959)
## 3.8.0 / 2018-04-19 ## 3.8.0 / 2018-04-19
### Development Fixes ### Development Fixes

View File

@ -1,5 +1,5 @@
--- ---
version: 3.8.0 version: 3.8.1
name: Jekyll • Simple, blog-aware, static sites name: Jekyll • Simple, blog-aware, static sites
description: Transform your plain text into static websites and blogs description: Transform your plain text into static websites and blogs
url: https://jekyllrb.com url: https://jekyllrb.com

View File

@ -4,6 +4,16 @@ permalink: "/docs/history/"
note: This file is autogenerated. Edit /History.markdown instead. 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 ## 3.8.0 / 2018-04-19
{: #v3-8-0} {: #v3-8-0}

View File

@ -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).

View File

@ -1 +1 @@
3.8.0 3.8.1

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
module Jekyll module Jekyll
VERSION = "3.8.0".freeze VERSION = "3.8.1".freeze
end end