From eb2c888698fa9d49f8b6172ea9ff730473a6dcd7 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Thu, 28 Dec 2023 14:47:09 -0800 Subject: [PATCH] Release :gem: v3.9.4 --- .github/workflows/release.yml | 2 +- History.markdown | 6 ++++++ docs/_config.yml | 2 +- docs/_docs/history.md | 9 +++++++++ .../2023-12-28-jekyll-3-9-4-released.markdown | 14 ++++++++++++++ docs/latest_version.txt | 2 +- lib/jekyll/version.rb | 2 +- 7 files changed, 33 insertions(+), 4 deletions(-) create mode 100644 docs/_posts/2023-12-28-jekyll-3-9-4-released.markdown diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 23a8cccb3ed..d181e6d0a6d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,4 +31,4 @@ jobs: with: gemspec_name: jekyll env: - GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_GEM_PUSH_API_KEY }} \ No newline at end of file + GEM_HOST_API_KEY: ${{ secrets.RUBYGEMS_GEM_PUSH_API_KEY }} diff --git a/History.markdown b/History.markdown index 5dc66c400c6..fb7edc10a67 100644 --- a/History.markdown +++ b/History.markdown @@ -1,3 +1,9 @@ +## 3.9.4 / 2023-12-28 + +### Bug Fixes + + * Backport #9392 for v3.9.x: Add support for Ruby 3.3 Logger (#9513) + ## 3.9.3 / 2023-01-27 ### Bug Fixes diff --git a/docs/_config.yml b/docs/_config.yml index 9694b66fea9..9a5bd3274a4 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,5 +1,5 @@ --- -version: 3.9.3 +version: 3.9.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 714869be30e..75e8cfdf068 100644 --- a/docs/_docs/history.md +++ b/docs/_docs/history.md @@ -4,6 +4,15 @@ permalink: "/docs/history/" note: This file is autogenerated. Edit /History.markdown instead. --- +## 3.9.4 / 2023-12-28 +{: #v3-9-4} + +### Bug Fixes +{: #bug-fixes-v3-9-4} + +- Backport [#9392]({{ site.repository }}/issues/9392) for v3.9.x: Add support for Ruby 3.3 Logger ([#9513]({{ site.repository }}/issues/9513)) + + ## 3.9.3 / 2023-01-27 {: #v3-9-3} diff --git a/docs/_posts/2023-12-28-jekyll-3-9-4-released.markdown b/docs/_posts/2023-12-28-jekyll-3-9-4-released.markdown new file mode 100644 index 00000000000..544dd99a711 --- /dev/null +++ b/docs/_posts/2023-12-28-jekyll-3-9-4-released.markdown @@ -0,0 +1,14 @@ +--- +title: 'Jekyll 3.9.4 Released' +date: 2023-12-28 14:45:05 -0800 +author: parkr +version: 3.9.4 +categories: [release] +--- + +Hey Jekyllers! + +This release, 3.9.4, is to bring Ruby 3.3 support to Jekyll. You can find +the details in [the changelog]({% link _docs/history.md %}#v3-9-4). + +Happy Jekylling! diff --git a/docs/latest_version.txt b/docs/latest_version.txt index 820476af941..e0d61b5b062 100644 --- a/docs/latest_version.txt +++ b/docs/latest_version.txt @@ -1 +1 @@ -3.9.3 +3.9.4 diff --git a/lib/jekyll/version.rb b/lib/jekyll/version.rb index e1306e04252..8e05c4b8933 100644 --- a/lib/jekyll/version.rb +++ b/lib/jekyll/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Jekyll - VERSION = "3.9.3".freeze + VERSION = "3.9.4".freeze end