Publish Release Post for v4.3.4

This commit is contained in:
Ashwin Maroli 2024-09-16 21:50:13 +05:30
parent 4ad5419d55
commit ef6ae0305e
6 changed files with 47 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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}

View File

@ -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'!!

View File

@ -1 +1 @@
4.3.3
4.3.4

View File

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