Release v3.9.5

This commit is contained in:
Parker Moore
2024-02-12 20:26:02 -08:00
parent ee86ce5756
commit 3b62587def
4 changed files with 28 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
## 3.9.5 / 2024-02-12
### Minor Enhancements
* 3.9-stable: allow Pages to be Excerpted (#9550)
## 3.9.4 / 2023-12-28
### Bug Fixes

View File

@@ -4,6 +4,15 @@ permalink: "/docs/history/"
note: This file is autogenerated. Edit /History.markdown instead.
---
## 3.9.5 / 2024-02-12
{: #v3-9-5}
### Minor Enhancements
{: #minor-enhancements-v3-9-5}
- 3.9-stable: allow Pages to be Excerpted ([#9550]({{ site.repository }}/issues/9550))
## 3.9.4 / 2023-12-28
{: #v3-9-4}

View File

@@ -0,0 +1,12 @@
---
title: 'Jekyll 3.9.5 Released'
date: 2024-02-12 20:24:21 -0800
author: parkr
version: 3.9.5
categories: [release]
---
This release allows `Jekyll::Page` objects to interact with
`Jekyll::Excerpt`. Previously, excerpts could only be generated for
documents (e.g. collection items like posts), so this brings Page objects
to parity.

View File

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