diff --git a/History.markdown b/History.markdown index d0cb6067..dfd7e1f0 100644 --- a/History.markdown +++ b/History.markdown @@ -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 diff --git a/docs/_config.yml b/docs/_config.yml index 74a9914e..4c32125e 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -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 diff --git a/docs/_docs/history.md b/docs/_docs/history.md index 1700c17b..3bed8dd8 100644 --- a/docs/_docs/history.md +++ b/docs/_docs/history.md @@ -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} diff --git a/docs/latest_version.txt b/docs/latest_version.txt index f77856a6..cc2fbe89 100644 --- a/docs/latest_version.txt +++ b/docs/latest_version.txt @@ -1 +1 @@ -4.3.1 +4.3.2 diff --git a/lib/jekyll/version.rb b/lib/jekyll/version.rb index 525f4c6f..73909f4a 100644 --- a/lib/jekyll/version.rb +++ b/lib/jekyll/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Jekyll - VERSION = "4.3.1" + VERSION = "4.3.2" end