8000 Add release post for v4.3.3 by mattr- · Pull Request #9511 · jekyll/jekyll · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Add release post for v4.3.3 #9511

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Dec 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions History.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,16 @@
* Add support for upcoming logger 1.4.3 (#9392)
* Fix typo in devcontainer.json (#9364)

## 4.3.3 / 2023-12-27

### Bug Fixes

* Backport #9392 for v4.3.x: Fix backward compatibility issues in the Logger (#9510)

### Development Fixes

* Backport #9237 for v4.3.x: Use Hash explicitly for Struct initializer (#9285)

## 3.9.3 / 2023-01-29

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 4.3.2
version: 4.3.3
name: Jekyll • Simple, blog-aware, static sites
description: Transform your plain text into static websites and blogs
url: https://jekyllrb.com
Expand Down
14 changes: 14 additions & 0 deletions docs/_docs/history.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@ permalink: "/docs/history/"
note: This file is autogenerated. Edit /History.markdown instead.
---

## 4.3.3 / 2023-12-27
{: #v4-3-3}

### Bug Fixes
{: #bug-fixes-v4-3-3}

- Backport [#9392]({{ site.repository }}/issues/9392) for v4.3.x: Fix backward compatibility issues in the Logger ([#9510]({{ site.repository }}/issues/9510))

### Development Fixes
{: #development-fixes-v4-3-3}

- Backport [#9237]({{ site.repository }}/issues/9237) for v4.3.x: Use Hash explicitly for Struct initializer ([#9285]({{ site.repository }}/issues/9285))


## 3.9.3 / 2023-01-29
{: #v3-9-3}

Expand Down
2 changes: 1 addition & 1 deletion docs/_docs/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Security updates are applied to the latest MINOR version of Jekyll, and the vers
Please report vulnerabilities by sending an email to security@jekyllrb.com with the following information:

1. A description of the vulnerability
2. Reproduction steps and/or a sample site (share a private repo to the [Jekyll Security Team](/team/#security-team))
2. Reproduction steps and/or a sample site (share a private repo to the [Jekyll Security Team](docs/pages/team.md))
3. Your contact information

The Jekyll security team will respond to your submission and notify you whether it has been confirmed by the team.
Expand Down
19 changes: 19 additions & 0 deletions docs/_posts/2023-12-27-jekyll-4-3-3-released.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: 'Jekyll 4.3.3 Released'
date: 2023-12-27 11:15:00 -0600
author: mattr-
version: 4.3.3
category: release
---

Hello Jekyllers!

This is a very small release containing two things:

- A fix for using Jekyll with Ruby 3.3 and the new `logger` gem included with that release.
- A test fix for newer versions of Ruby for packagers that run the test suite
as part of their packaging process.

Nothing new in the way of features for this release. You'll need to wait for v4.4 for that. 😄

Happy Jekylling!!
2 changes: 1 addition & 1 deletion docs/latest_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.3.2
4.3.3
2 changes: 1 addition & 1 deletion lib/jekyll/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Jekyll
VERSION = "4.3.2"
VERSION = "4.3.3"
end
0