Skip to content

Commit

Permalink
Merge pull request #8631 from jekyll/3.9-stable-3-9-1-release-post
Browse files Browse the repository at this point in the history
v3.9.1: Release post
  • Loading branch information
parkr committed Apr 8, 2021
2 parents 2b31497 + 7f11845 commit 970f3a1
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
version: 3.9.0
version: 3.9.1
name: Jekyll • Simple, blog-aware, static sites
description: Transform your plain text into static websites and blogs
url: https://jekyllrb.com
Expand Down
28 changes: 28 additions & 0 deletions docs/_posts/2021-04-07-jekyll-3-9-1-released.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
title: 'Jekyll 3.9.1 Released'
date: 2021-04-07 15:59:45 -0400
author: parkr
version: 3.9.1
categories: [release]
---

This patch release of the 3.9 series is released to fix a bug where the
`include` tag does not allow valid filename characters. For example, this
would previously fail:

{% raw %}
```text
{% include my-logo@2x.svg %}
```
{% endraw %}

This release adds support for the following characters in filenames:

- `@`
- `-`
- `(` and `)`
- `+`
- `~`
- `#`

Happy Jekylling!
2 changes: 1 addition & 1 deletion docs/latest_version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.9.0
3.9.1
2 changes: 1 addition & 1 deletion lib/jekyll/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Jekyll
VERSION = "3.9.0".freeze
VERSION = "3.9.1".freeze
end

0 comments on commit 970f3a1

Please sign in to comment.