diff --git a/History.markdown b/History.markdown index 325b9647..87832ca4 100644 --- a/History.markdown +++ b/History.markdown @@ -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 diff --git a/docs/_config.yml b/docs/_config.yml index 4c32125e..68e22caf 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -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 diff --git a/docs/_docs/history.md b/docs/_docs/history.md index 4b0d5f92..2ccdcc9b 100644 --- a/docs/_docs/history.md +++ b/docs/_docs/history.md @@ -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} diff --git a/docs/_docs/security.md b/docs/_docs/security.md index 65bf0982..631a163f 100644 --- a/docs/_docs/security.md +++ b/docs/_docs/security.md @@ -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. diff --git a/docs/_posts/2023-12-27-jekyll-4-3-3-released.markdown b/docs/_posts/2023-12-27-jekyll-4-3-3-released.markdown new file mode 100644 index 00000000..9435f864 --- /dev/null +++ b/docs/_posts/2023-12-27-jekyll-4-3-3-released.markdown @@ -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!! diff --git a/docs/latest_version.txt b/docs/latest_version.txt index cc2fbe89..e91d9be2 100644 --- a/docs/latest_version.txt +++ b/docs/latest_version.txt @@ -1 +1 @@ -4.3.2 +4.3.3 diff --git a/lib/jekyll/version.rb b/lib/jekyll/version.rb index 73909f4a..7eb6d310 100644 --- a/lib/jekyll/version.rb +++ b/lib/jekyll/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Jekyll - VERSION = "4.3.2" + VERSION = "4.3.3" end