Release 💎 v4.3.2

This commit is contained in:
Ashwin Maroli 2023-01-20 23:53:30 +05:30
parent 03db5267a3
commit ff60d51c9b
5 changed files with 32 additions and 3 deletions

View File

@ -29,6 +29,19 @@
* Optimize `Site#each_site_file` (#9187)
* Rename sass partial created for new blank site (#9257)
## 4.3.2 / 2023-01-20
* Optimize default front matter using `File.fnmatch?` (#9185)
* Remove totals in profile table properly (#9186)
* Optimize `Site#each_site_file` (#9187)
* Rename sass partial created for new blank site (#9257)
### Bug Fixes
* Backport #9257 for v4.3.x: Rename sass partial created for new blank site (#9262)
* Backport #9187 for v4.3.x: Optimize `Site#each_site_file` (#9256)
* Backport #9186 for v4.3.x: Remove totals in profile table properly (#9255)
## 4.3.1 / 2022-10-26
### Bug Fixes

View File

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

View File

@ -4,6 +4,22 @@ permalink: "/docs/history/"
note: This file is autogenerated. Edit /History.markdown instead.
---
## 4.3.2 / 2023-01-20
{: #v4-3-2}
- Optimize default front matter using `File.fnmatch?` ([#9185]({{ site.repository }}/issues/9185))
- Remove totals in profile table properly ([#9186]({{ site.repository }}/issues/9186))
- Optimize `Site#each_site_file` ([#9187]({{ site.repository }}/issues/9187))
- Rename sass partial created for new blank site ([#9257]({{ site.repository }}/issues/9257))
### Bug Fixes
{: #bug-fixes-v4-3-2}
- Backport [#9257]({{ site.repository }}/issues/9257) for v4.3.x: Rename sass partial created for new blank site ([#9262]({{ site.repository }}/issues/9262))
- Backport [#9187]({{ site.repository }}/issues/9187) for v4.3.x: Optimize `Site#each_site_file` ([#9256]({{ site.repository }}/issues/9256))
- Backport [#9186]({{ site.repository }}/issues/9186) for v4.3.x: Remove totals in profile table properly ([#9255]({{ site.repository }}/issues/9255))
## 4.3.1 / 2022-10-26
{: #v4-3-1}

View File

@ -1 +1 @@
4.3.1
4.3.2

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module Jekyll
VERSION = "4.3.1"
VERSION = "4.3.2"
end