diff --git a/History.markdown b/History.markdown index f3f6b1ba..6bab0a71 100644 --- a/History.markdown +++ b/History.markdown @@ -89,6 +89,12 @@ * Add @jmcglone's guide to github-pages doc page (#4364) * Added the Wordpress2Jekyll Wordpress plugin (#4377) +## 3.0.2 / 2016-01-20 + +### Bug Fixes + + * Document: throw a useful error when an invalid date is given (#4378) + ## 3.0.1 / 2015-11-17 ### Bug Fixes diff --git a/site/_docs/history.md b/site/_docs/history.md index a12653f2..7d1ff85d 100644 --- a/site/_docs/history.md +++ b/site/_docs/history.md @@ -4,6 +4,15 @@ title: History permalink: "/docs/history/" --- +## 3.0.2 / 2016-01-20 +{: #v3-0-2} + +### Bug Fixes +{: #bug-fixes-v3-0-2} + +- Document: throw a useful error when an invalid date is given ([#4378]({{ site.repository }}/issues/4378)) + + ## 3.0.1 / 2015-11-17 {: #v3-0-1} diff --git a/site/_posts/2016-01-20-jekyll-3-0-2-released.markdown b/site/_posts/2016-01-20-jekyll-3-0-2-released.markdown new file mode 100644 index 00000000..88f8888f --- /dev/null +++ b/site/_posts/2016-01-20-jekyll-3-0-2-released.markdown @@ -0,0 +1,19 @@ +--- +layout: news_item +title: 'Jekyll 3.0.2 Released' +date: 2016-01-20 14:08:18 -0800 +author: parkr +version: 3.0.2 +categories: [release] +--- + +A crucial bug was found in v3.0.1 which caused invalid post dates to go +unnoticed in the build chain until the error that popped up was unhelpful. +v3.0.2 [throws errors as you'd expect](https://github.com/jekyll/jekyll/issues/4375) +when there is a post like `_posts/2016-22-01-future.md` or a post has an +invalid date like `date: "tuesday"` in their front matter. + +This should make the experience of working with Jekyll just a little +better. + +Happy Jekylling!