From e4057e0c81ef47dcaad750dd38dcaa5959d2a616 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Thu, 21 Apr 2016 17:17:13 -0700 Subject: [PATCH] Write release posts. --- site/_docs/history.md | 14 ++++++++++++++ .../2016-04-19-jekyll-3-0-4-released.markdown | 14 ++++++++++++++ .../2016-04-19-jekyll-3-1-3-released.markdown | 8 ++++++++ 3 files changed, 36 insertions(+) diff --git a/site/_docs/history.md b/site/_docs/history.md index 175a3b1a..ca35565c 100644 --- a/site/_docs/history.md +++ b/site/_docs/history.md @@ -5,6 +5,13 @@ permalink: "/docs/history/" note: This file is autogenerated. Edit /History.markdown instead. --- +## 3.1.3 / 2016-04-18 +{: #v3-1-3} + +- Fix defaults for Documents to lookup defaults based on `relative_path` instead of `url` ([#4807]({{ site.repository }}/issues/4807)) +- Use SSLEnable instead of EnableSSL and make URL HTTPS (WEBrick) ([#4693]({{ site.repository }}/issues/4693)) + + ## 3.1.2 / 2016-02-19 {: #v3-1-2} @@ -168,6 +175,13 @@ note: This file is autogenerated. Edit /History.markdown instead. - Correct Minor spelling error ([#4394]({{ site.repository }}/issues/4394)) +## 3.0.4 / 2016-04-18 +{: #v3-0-4} + +- Fix defaults for Documents to lookup defaults based on `relative_path` instead of `url` ([#4806]({{ site.repository }}/issues/4806)) +- Configuration: allow users to specify a `collections.posts.permalink` directly without `permalink` clobbering it ([#4753]({{ site.repository }}/issues/4753)) + + ## 3.0.3 / 2016-02-08 {: #v3-0-3} diff --git a/site/_posts/2016-04-19-jekyll-3-0-4-released.markdown b/site/_posts/2016-04-19-jekyll-3-0-4-released.markdown index e58fa0fc..d2cc4ec6 100644 --- a/site/_posts/2016-04-19-jekyll-3-0-4-released.markdown +++ b/site/_posts/2016-04-19-jekyll-3-0-4-released.markdown @@ -7,4 +7,18 @@ version: 3.0.4 categories: [release] --- +v3.0.4 is a patch release which fixes the follow two issues: +- Front matter defaults may not have worked for collection documents and posts due to a problem where they were looked up by their URL rather than their path relative to the site source +- Configuration for the posts permalink might be borked when a user specified a value for `collections.posts.permalink` directly. This forced the use of `permalink` at the top level, which also affected pages. To configure a permalink _just for posts_, you can do so with: + +{% highlight yaml %} +collections: + posts: + output: true + permalink: /blog/:year/:title/ +{% endhighlight %} + +Both of these issues have been resolved. For more information, check out [the full history](/docs/history/#v3-0-4). + +Happy Jekylling! diff --git a/site/_posts/2016-04-19-jekyll-3-1-3-released.markdown b/site/_posts/2016-04-19-jekyll-3-1-3-released.markdown index 0432f4c9..cd478e22 100644 --- a/site/_posts/2016-04-19-jekyll-3-1-3-released.markdown +++ b/site/_posts/2016-04-19-jekyll-3-1-3-released.markdown @@ -7,4 +7,12 @@ version: 3.1.3 categories: [release] --- +v3.1.3 is a patch release which fixes the follow two issues: + +- Front matter defaults may not have worked for collection documents and posts due to a problem where they were looked up by their URL rather than their path relative to the site source +- Running `jekyll serve` with SSL enabled was broken due to a bad configuration. + +Both of these issues have been resolved. For more information, check out [the full history](/docs/history/#v3-1-3). + +Happy Jekylling!