Merge branch '3.8-stable'
This commit is contained in:
commit
784f2e2c0d
|
@ -46,6 +46,11 @@
|
||||||
* Update instructions for releasing docs Gem (#6975)
|
* Update instructions for releasing docs Gem (#6975)
|
||||||
* yajl-ruby update to v1.4.0 (#6976)
|
* yajl-ruby update to v1.4.0 (#6976)
|
||||||
* Load Rouge for TestKramdown (#7007)
|
* Load Rouge for TestKramdown (#7007)
|
||||||
|
|
||||||
|
## 3.8.2 / 2018-05-18
|
||||||
|
|
||||||
|
### Development Fixes
|
||||||
|
|
||||||
* Update rubocop version (#7016)
|
* Update rubocop version (#7016)
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
version: 3.8.1
|
version: 3.8.2
|
||||||
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
|
||||||
|
|
|
@ -4,6 +4,20 @@ permalink: "/docs/history/"
|
||||||
note: This file is autogenerated. Edit /History.markdown instead.
|
note: This file is autogenerated. Edit /History.markdown instead.
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 3.8.2 / 2018-05-18
|
||||||
|
{: #v3-8-2}
|
||||||
|
|
||||||
|
### Development Fixes
|
||||||
|
{: #development-fixes-v3-8-2}
|
||||||
|
|
||||||
|
- Update rubocop version ([#7016]({{ site.repository }}/issues/7016))
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
{: #bug-fixes-v3-8-2}
|
||||||
|
|
||||||
|
- Add whitespace control to LIQUID_TAG_REGEX ([#7015]({{ site.repository }}/issues/7015))
|
||||||
|
|
||||||
|
|
||||||
## 3.8.1 / 2018-05-01
|
## 3.8.1 / 2018-05-01
|
||||||
{: #v3-8-1}
|
{: #v3-8-1}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
---
|
||||||
|
title: 'Jekyll 3.8.2 Released'
|
||||||
|
date: 2018-05-19 10:30:00 -0500
|
||||||
|
author: pathawks
|
||||||
|
version: 3.8.2
|
||||||
|
categories: [release]
|
||||||
|
---
|
||||||
|
|
||||||
|
Hello Jekyllers!!
|
||||||
|
|
||||||
|
Today we are releasing `v3.8.2`, which fixes the way Jekyll generates excerpts
|
||||||
|
for posts when the first paragraph of the post contains Liquid tags that take
|
||||||
|
advantage of [Liquid's whitespace control feature][Liquid whitespace].
|
||||||
|
|
||||||
|
Big thanks to @kylebarbour, who first reported this issue and also very quickly
|
||||||
|
submitted a fix. Also thanks to @nickskalkin for making sure that we are using
|
||||||
|
the latest version of Rubocop to lint our code.
|
||||||
|
|
||||||
|
[Liquid whitespace]: https://shopify.github.io/liquid/basics/whitespace/
|
|
@ -1 +1 @@
|
||||||
3.8.1
|
3.8.2
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
module Jekyll
|
module Jekyll
|
||||||
VERSION = "3.8.1".freeze
|
VERSION = "3.8.2".freeze
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue