Merge branch '3.8-stable' into master
This commit is contained in:
commit
4c2c33aefd
|
@ -48,6 +48,8 @@
|
||||||
* Load Rouge for TestKramdown (#7007)
|
* Load Rouge for TestKramdown (#7007)
|
||||||
* Useless privates removed (#6768)
|
* Useless privates removed (#6768)
|
||||||
|
|
||||||
|
## 3.8.3 / 2018-06-05
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
* Fix --unpublished not affecting collection documents (#7027)
|
* Fix --unpublished not affecting collection documents (#7027)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
version: 3.8.2
|
version: 3.8.3
|
||||||
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,15 @@ permalink: "/docs/history/"
|
||||||
note: This file is autogenerated. Edit /History.markdown instead.
|
note: This file is autogenerated. Edit /History.markdown instead.
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 3.8.3 / 2018-06-05
|
||||||
|
{: #v3-8-3}
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
{: #bug-fixes-v3-8-3}
|
||||||
|
|
||||||
|
- Fix --unpublished not affecting collection documents ([#7027]({{ site.repository }}/issues/7027))
|
||||||
|
|
||||||
|
|
||||||
## 3.8.2 / 2018-05-18
|
## 3.8.2 / 2018-05-18
|
||||||
{: #v3-8-2}
|
{: #v3-8-2}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
title: 'Jekyll 3.8.3 Released'
|
||||||
|
date: 2018-06-05 09:00:00 -0500
|
||||||
|
author: pathawks
|
||||||
|
version: 3.8.3
|
||||||
|
categories: [release]
|
||||||
|
---
|
||||||
|
|
||||||
|
This release fixes a regression in 3.8 where collections with `published: false`
|
||||||
|
do not show when using the `--unpublished` flag.
|
||||||
|
|
||||||
|
Thanks to @philipbelesky for reporting and fixing this issue; collections with
|
||||||
|
`published: false` now behave the same way as Posts.
|
|
@ -1 +1 @@
|
||||||
3.8.2
|
3.8.3
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
module Jekyll
|
module Jekyll
|
||||||
VERSION = "3.8.2".freeze
|
VERSION = "3.8.3".freeze
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue