reflect 3.8.5 release
This commit is contained in:
parent
564f7735b3
commit
271e476e67
|
@ -164,6 +164,11 @@
|
|||
|
||||
* Add Release Post for v3.6.3, v3.7.4 and v3.8.4 (#7259)
|
||||
|
||||
## 3.8.5 / 2018-11-04
|
||||
|
||||
### Bug Fixes
|
||||
* Re-implement handling Liquid blocks in excerpts (#7250)
|
||||
|
||||
## 3.8.4 / 2018-09-18
|
||||
|
||||
### Bug Fixes
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
version: 3.8.4
|
||||
version: 3.8.5
|
||||
name: Jekyll • Simple, blog-aware, static sites
|
||||
description: Transform your plain text into static websites and blogs
|
||||
url: https://jekyllrb.com
|
||||
|
|
|
@ -4,6 +4,15 @@ permalink: "/docs/history/"
|
|||
note: This file is autogenerated. Edit /History.markdown instead.
|
||||
---
|
||||
|
||||
## 3.8.5 / 2018-11-04
|
||||
{: #v3-8-5}
|
||||
|
||||
### Bug Fixes
|
||||
{: #bug-fixes-v3-8-5}
|
||||
|
||||
- Re-implement handling Liquid blocks in excerpts ([#7250]({{ site.repository }}/issues/7250))
|
||||
|
||||
|
||||
## 3.8.4 / 2018-09-18
|
||||
{: #v3-8-4}
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
3.8.4
|
||||
3.8.5
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Jekyll
|
||||
VERSION = "3.8.4"
|
||||
VERSION = "3.8.5"
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue