From 5687a092554599e8c2cf1247764a7eaf87f3d05f Mon Sep 17 00:00:00 2001 From: Pat Hawks Date: Mon, 4 Jun 2018 21:39:43 -0500 Subject: [PATCH] Release :gem: 3.8.3 --- History.markdown | 2 +- docs/_config.yml | 2 +- docs/_docs/history.md | 9 +++++++++ .../2018-06-04-jekyll-3-8-3-released.markdown | 13 +++++++++++++ docs/latest_version.txt | 2 +- lib/jekyll/version.rb | 2 +- 6 files changed, 26 insertions(+), 4 deletions(-) create mode 100644 docs/_posts/2018-06-04-jekyll-3-8-3-released.markdown diff --git a/History.markdown b/History.markdown index b50563f8..7c5bdb82 100644 --- a/History.markdown +++ b/History.markdown @@ -1,4 +1,4 @@ -## HEAD +## 3.8.3 / 2018-06-05 ### Bug Fixes diff --git a/docs/_config.yml b/docs/_config.yml index e608b1b6..27ad51ff 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1,5 +1,5 @@ --- -version: 3.8.2 +version: 3.8.3 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 4a9faf7f..1e6c14d8 100644 --- a/docs/_docs/history.md +++ b/docs/_docs/history.md @@ -4,6 +4,15 @@ permalink: "/docs/history/" note: This file is autogenerated. Edit /History.markdown instead. --- +## 3.8.3 / 2018-06-05 +{: #v3-8-3} + +### Bug Fixes +{: #bug-fixes-v3-8-3} + +- Fix --unpublished not affecting collection documents ([#7027]({{ site.repository }}/issues/7027)) + + ## 3.8.2 / 2018-05-18 {: #v3-8-2} diff --git a/docs/_posts/2018-06-04-jekyll-3-8-3-released.markdown b/docs/_posts/2018-06-04-jekyll-3-8-3-released.markdown new file mode 100644 index 00000000..5678b0ad --- /dev/null +++ b/docs/_posts/2018-06-04-jekyll-3-8-3-released.markdown @@ -0,0 +1,13 @@ +--- +title: 'Jekyll 3.8.3 Released' +date: 2018-06-05 09:00:00 -0500 +author: pathawks +version: 3.8.3 +categories: [release] +--- + +This release fixes a regression in 3.8 where collections with `published: false` +do not show when using the `--unpublished` flag. + +Thanks to @philipbelesky for reporting and fixing this issue; collections with +`published: false` now behave the same way as Posts. diff --git a/docs/latest_version.txt b/docs/latest_version.txt index a08ffae0..269aa9c8 100644 --- a/docs/latest_version.txt +++ b/docs/latest_version.txt @@ -1 +1 @@ -3.8.2 +3.8.3 diff --git a/lib/jekyll/version.rb b/lib/jekyll/version.rb index 0a6a8a2d..9a62ec6f 100644 --- a/lib/jekyll/version.rb +++ b/lib/jekyll/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Jekyll - VERSION = "3.8.2".freeze + VERSION = "3.8.3".freeze end