From 0faa2a4c122347d423313a9665f755359a854a71 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Thu, 3 Mar 2022 16:31:14 +0530 Subject: [PATCH] Release :gem: v4.2.2 --- History.markdown | 11 +++++++++++ docs/_config.yml | 2 +- docs/_docs/history.md | 15 +++++++++++++++ docs/latest_version.txt | 2 +- lib/jekyll/version.rb | 2 +- 5 files changed, 29 insertions(+), 3 deletions(-) diff --git a/History.markdown b/History.markdown index f8112207..c37aa3ec 100644 --- a/History.markdown +++ b/History.markdown @@ -105,6 +105,17 @@ * Improvements to CSS (#7834) * Slightly update lang `sh` code-block styling (#8857) +## 4.2.2 / 2022-03-03 + +### Bug Fixes + + * Lock `http_parser.rb` gem to `v0.6.x` on JRuby. + +### Development Fixes + + * Backport #8830 for v4.2.x: Add a workflow to build gems consistently (#8869) + * Lock `rubocop-performance` to `v1.11.x`. + ## 4.2.1 / 2021-09-27 ### Bug Fixes diff --git a/docs/_config.yml b/docs/_config.yml index 4fe4dbce..a86191a3 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,5 +1,5 @@ --- -version: 4.2.1 +version: 4.2.2 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 d377478c..fbcc1aa3 100644 --- a/docs/_docs/history.md +++ b/docs/_docs/history.md @@ -4,6 +4,21 @@ permalink: "/docs/history/" note: This file is autogenerated. Edit /History.markdown instead. --- +## 4.2.2 / 2022-03-03 +{: #v4-2-2} + +### Bug Fixes +{: #bug-fixes-v4-2-2} + +- Lock `http_parser.rb` gem to `v0.6.x` on JRuby. + +### Development Fixes +{: #development-fixes-v4-2-2} + +- Backport [#8830]({{ site.repository }}/issues/8830) for v4.2.x: Add a workflow to build gems consistently ([#8869]({{ site.repository }}/issues/8869)) +- Lock `rubocop-performance` to `v1.11.x`. + + ## 4.2.1 / 2021-09-27 {: #v4-2-1} diff --git a/docs/latest_version.txt b/docs/latest_version.txt index fae6e3d0..af8c8ec7 100644 --- a/docs/latest_version.txt +++ b/docs/latest_version.txt @@ -1 +1 @@ -4.2.1 +4.2.2 diff --git a/lib/jekyll/version.rb b/lib/jekyll/version.rb index f6cd7edd..5a1c19d2 100644 --- a/lib/jekyll/version.rb +++ b/lib/jekyll/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Jekyll - VERSION = "4.2.1" + VERSION = "4.2.2" end