diff --git a/History.markdown b/History.markdown index 0756f90a5a0..43163e0774c 100644 --- a/History.markdown +++ b/History.markdown @@ -108,6 +108,17 @@ * Extract markup for `Improve this page` into an inclusion (#9675) +## 4.3.4 / 2024-09-16 + +### Bug Fixes + + * Backport #9662 for v4.3.x: Relax version constraint on wdm in new Gemfile (#9683) + * Backport #9680 for v4.3.x: Render theme-gem root only in development (#9684) + +### Development Fixes + + * Sync workflows with counterparts on `master` (#9681) + ## 4.3.3 / 2023-12-27 ### Bug Fixes diff --git a/docs/_config.yml b/docs/_config.yml index 826c03d7bd8..32db99a6336 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,5 +1,5 @@ --- -version: 4.3.3 +version: 4.3.4 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 c4c9debc77a..88ff1424c75 100644 --- a/docs/_docs/history.md +++ b/docs/_docs/history.md @@ -4,6 +4,21 @@ permalink: "/docs/history/" note: This file is autogenerated. Edit /History.markdown instead. --- +## 4.3.4 / 2024-09-16 +{: #v4-3-4} + +### Bug Fixes +{: #bug-fixes-v4-3-4} + +- Backport [#9662]({{ site.repository }}/issues/9662) for v4.3.x: Relax version constraint on wdm in new Gemfile ([#9683]({{ site.repository }}/issues/9683)) +- Backport [#9680]({{ site.repository }}/issues/9680) for v4.3.x: Render theme-gem root only in development ([#9684]({{ site.repository }}/issues/9684)) + +### Development Fixes +{: #development-fixes-v4-3-4} + +- Sync workflows with counterparts on `master` ([#9681]({{ site.repository }}/issues/9681)) + + ## 4.3.3 / 2023-12-27 {: #v4-3-3} diff --git a/docs/_posts/2024-09-16-jekyll-4-3-4-released.markdown b/docs/_posts/2024-09-16-jekyll-4-3-4-released.markdown new file mode 100644 index 00000000000..457e87c9e90 --- /dev/null +++ b/docs/_posts/2024-09-16-jekyll-4-3-4-released.markdown @@ -0,0 +1,18 @@ +--- +title: 'Jekyll 4.3.4 Released' +date: 2024-09-16 21:34:22 +0530 +author: ashmaroli +version: 4.3.4 +category: release +--- + +Hello Jekyllers! + +Publishing a small bug-fix release with the following patches: + +* Relax version-constraint on gem `wdm` in Gemfile created by `jekyll new`. +* Patch `Jekyll::Drops::ThemeDrop#root` to render absolute path to theme-gem only if `JEKYLL_ENV` is explicitly set + to string `development`. + +That is all for now. +Happy Jekyllin'!! diff --git a/docs/latest_version.txt b/docs/latest_version.txt index e91d9be2a86..eda862a98c1 100644 --- a/docs/latest_version.txt +++ b/docs/latest_version.txt @@ -1 +1 @@ -4.3.3 +4.3.4 diff --git a/lib/jekyll/version.rb b/lib/jekyll/version.rb index 7eb6d310499..37eec133d3a 100644 --- a/lib/jekyll/version.rb +++ b/lib/jekyll/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Jekyll - VERSION = "4.3.3" + VERSION = "4.3.4" end