Merge branch '3.8-stable'
This commit is contained in:
commit
b0a1c42222
|
@ -17,11 +17,6 @@
|
|||
* use jekyll-compose if installed (#6932)
|
||||
* Memoize computing excerpt's relative_path (#6951)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Fix rendering Liquid constructs in excerpts (#6945)
|
||||
* Liquify documents unless published == false (#6959)
|
||||
|
||||
### Major Enhancements
|
||||
|
||||
* Remove unused error class (#6511)
|
||||
|
@ -34,6 +29,13 @@
|
|||
* Remove unnecessary Jekyll::Page constant (#6770)
|
||||
* 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
|
||||
|
||||
### Development Fixes
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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}
|
||||
|
||||
|
|
|
@ -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).
|
|
@ -1 +1 @@
|
|||
3.8.0
|
||||
3.8.1
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Jekyll
|
||||
VERSION = "3.8.0".freeze
|
||||
VERSION = "3.8.1".freeze
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue