Add release post for 3.2.1 & update History & version

This commit is contained in:
Parker Moore 2016-08-02 13:32:07 -07:00
parent d4a68eb642
commit 15dc18343c
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
4 changed files with 67 additions and 14 deletions

View File

@ -1,4 +1,16 @@
## HEAD ## 3.2.1 / 2016-08-02
### Bug Fixes
* Include theme directories in default gemspec (#5152)
* Fix for symlinked themes (#5156)
* Layout: set `relative_path` without using Pathname (#5164)
### Development Fixes
* Add test to build the default site (#5154)
* script/default-site: specify `BUNDLE_GEMFILE` for new site (#5178)
* script/default-site: read Jekyll source from local clone (#5188)
### Site Enhancements ### Site Enhancements
@ -10,18 +22,6 @@
* index.html: update instructions to require bundler (#5169) * index.html: update instructions to require bundler (#5169)
* docs/quickstart: update instructions to require bundler (#5168) * docs/quickstart: update instructions to require bundler (#5168)
### Bug Fixes
* Include theme directories in default gemspec (#5152)
* Fix for symlinked themes (#5156)
* Layout: set relative_path without using Pathname (#5164)
### Development Fixes
* Add test to build the default site (#5154)
* script/default-site: specify BUNDLE_GEMFILE for new site (#5178)
* script/default-site: read Jekyll source from local clone (#5188)
## 3.2.0 / 2016-07-26 ## 3.2.0 / 2016-07-26
### Minor Enhancements ### Minor Enhancements

View File

@ -1,3 +1,3 @@
module Jekyll module Jekyll
VERSION = "3.2.0".freeze VERSION = "3.2.1".freeze
end end

View File

@ -5,6 +5,35 @@ permalink: "/docs/history/"
note: This file is autogenerated. Edit /History.markdown instead. note: This file is autogenerated. Edit /History.markdown instead.
--- ---
## 3.2.1 / 2016-08-02
{: #v3-2-1}
### Bug Fixes
{: #bug-fixes-v3-2-1}
- Include theme directories in default gemspec ([#5152]({{ site.repository }}/issues/5152))
- Fix for symlinked themes ([#5156]({{ site.repository }}/issues/5156))
- Layout: set `relative_path` without using Pathname ([#5164]({{ site.repository }}/issues/5164))
### Development Fixes
{: #development-fixes-v3-2-1}
- Add test to build the default site ([#5154]({{ site.repository }}/issues/5154))
- script/default-site: specify `BUNDLE_GEMFILE` for new site ([#5178]({{ site.repository }}/issues/5178))
- script/default-site: read Jekyll source from local clone ([#5188]({{ site.repository }}/issues/5188))
### Site Enhancements
{: #site-enhancements-v3-2-1}
- Enable site excerpts ([#5150]({{ site.repository }}/issues/5150))
- Initial 404 page ([#5143]({{ site.repository }}/issues/5143))
- Remove the "this feature is unreleased" warning from the theme docs ([#5158]({{ site.repository }}/issues/5158))
- Future True on GitHub Pages note ([#5173]({{ site.repository }}/issues/5173))
- Minor updates and corrections ([#5177]({{ site.repository }}/issues/5177))
- index.html: update instructions to require bundler ([#5169]({{ site.repository }}/issues/5169))
- docs/quickstart: update instructions to require bundler ([#5168]({{ site.repository }}/issues/5168))
## 3.2.0 / 2016-07-26 ## 3.2.0 / 2016-07-26
{: #v3-2-0} {: #v3-2-0}

View File

@ -0,0 +1,24 @@
---
layout: news_item
title: 'Jekyll 3.2.1 Released with Fix for Windows'
date: 2016-08-02 13:20:11 -0700
author: parkr
version: 3.2.1
categories: [release]
---
Well, 3.2.0 has been a success, but with one fatal flaw: it doesn't work on
Windows! Sorry, Windows users. Hot on the trail of 3.2.0, this release
should squash that :bug:. Sorry about that!
This release also fixes an issue when using [gem-based themes](/docs/themes/)
where the theme was rejected if it existed behind a symlink. This is a
common setup for the various ruby version managers, and for Ruby installed
via Homebrew. Props to @benbalter for fixing that up.
Thanks to the contributors for this release: Adam Petrie, Ben Balter,
Daniel Chapman, DirtyF, Gary Ewan Park, Jordon Bedwell, and Parker Moore.
As always, you can see our full changelog on [the History page](/docs/history/).
Happy Jekylling!