From 57a0cad4543d7f9565bce561983f724672a2a4ab Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Sun, 23 Jun 2024 22:13:03 -0700 Subject: [PATCH] Release Jekyll 3.10.0 --- History.markdown | 7 +++++++ docs/_config.yml | 2 +- docs/_docs/history.md | 10 ++++++++++ .../2024-06-23-jekyll-3-10-0-released.markdown | 16 ++++++++++++++++ docs/latest_version.txt | 2 +- lib/jekyll/version.rb | 2 +- 6 files changed, 36 insertions(+), 3 deletions(-) create mode 100644 docs/_posts/2024-06-23-jekyll-3-10-0-released.markdown diff --git a/History.markdown b/History.markdown index 20df3fe90..66042736a 100644 --- a/History.markdown +++ b/History.markdown @@ -1,3 +1,10 @@ +## 3.10.0 / 2024-06-23 + +### Minor Enhancements + + * Backport add-csv-dependency from #9522 to Jekyll 3 (#9616) + * 3.10-stable: Add webrick as a dependency (#9620) + ## 3.9.5 / 2024-02-12 ### Minor Enhancements diff --git a/docs/_config.yml b/docs/_config.yml index 9a5bd3274..d91a4bd6a 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,5 +1,5 @@ --- -version: 3.9.4 +version: 3.10.0 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 131c5ab43..76fdf356b 100644 --- a/docs/_docs/history.md +++ b/docs/_docs/history.md @@ -4,6 +4,16 @@ permalink: "/docs/history/" note: This file is autogenerated. Edit /History.markdown instead. --- +## 3.10.0 / 2024-06-23 +{: #v3-10-0} + +### Minor Enhancements +{: #minor-enhancements-v3-10-0} + +- Backport add-csv-dependency from [#9522]({{ site.repository }}/issues/9522) to Jekyll 3 ([#9616]({{ site.repository }}/issues/9616)) +- 3.10-stable: Add webrick as a dependency ([#9620]({{ site.repository }}/issues/9620)) + + ## 3.9.5 / 2024-02-12 {: #v3-9-5} diff --git a/docs/_posts/2024-06-23-jekyll-3-10-0-released.markdown b/docs/_posts/2024-06-23-jekyll-3-10-0-released.markdown new file mode 100644 index 000000000..e9f1a5a82 --- /dev/null +++ b/docs/_posts/2024-06-23-jekyll-3-10-0-released.markdown @@ -0,0 +1,16 @@ +--- +title: 'Jekyll 3.10.0 Released' +date: 2024-06-23 21:56:58 -0700 +author: parkr +version: 3.10.0 +categories: [release] +--- + +As Ruby continues to march on, the maintainers have made the decision to +drop some previously-bundled gems. This release makes Jekyll depend +directly on those gems so that whether your Ruby installation has them +bundled or not, your experience can continue uninterrupted. + +More details [are in the changelog]({% link _docs/history.md %}#v3-10-0). + +Happy Jekylling! diff --git a/docs/latest_version.txt b/docs/latest_version.txt index e0d61b5b0..30291cba2 100644 --- a/docs/latest_version.txt +++ b/docs/latest_version.txt @@ -1 +1 @@ -3.9.4 +3.10.0 diff --git a/lib/jekyll/version.rb b/lib/jekyll/version.rb index b0116735f..2f4e1a366 100644 --- a/lib/jekyll/version.rb +++ b/lib/jekyll/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Jekyll - VERSION = "3.9.5".freeze + VERSION = "3.10.0".freeze end