Write release posts.

This commit is contained in:
Parker Moore 2016-04-21 17:17:13 -07:00
parent f67f771a45
commit e4057e0c81
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
3 changed files with 36 additions and 0 deletions

View File

@ -5,6 +5,13 @@ permalink: "/docs/history/"
note: This file is autogenerated. Edit /History.markdown instead. 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 ## 3.1.2 / 2016-02-19
{: #v3-1-2} {: #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)) - 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 ## 3.0.3 / 2016-02-08
{: #v3-0-3} {: #v3-0-3}

View File

@ -7,4 +7,18 @@ version: 3.0.4
categories: [release] 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!

View File

@ -7,4 +7,12 @@ version: 3.1.3
categories: [release] 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!