Merge pull request #9624 from jekyll/3.10.0-release-ann

Release Jekyll v3.10.0
This commit is contained in:
Parker Moore
2024-06-24 15:25:09 -07:00
committed by GitHub
6 changed files with 36 additions and 3 deletions

View File

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

View File

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

View File

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

View File

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

View File

@@ -1 +1 @@
3.9.4
3.10.0

View File

@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Jekyll
VERSION = "3.9.5".freeze
VERSION = "3.10.0".freeze
end