Release 💎 3.5.1
This commit is contained in:
parent
c7d98cae26
commit
848bd4edcc
|
@ -1,4 +1,9 @@
|
|||
## HEAD
|
||||
## 3.5.1 / 2017-07-17
|
||||
|
||||
### Minor Enhancements
|
||||
|
||||
* Use Warn for deprecation messages (#6192)
|
||||
* site template: Use plugins key instead of gems (#6045)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
|
@ -16,6 +21,8 @@
|
|||
* Add {%raw%} to Liquid example on site (#6179)
|
||||
* Added improved Pug plugin - removed 404 Jade plugin (#6174)
|
||||
* Linking the link (#6210)
|
||||
* Small correction in documentation for includes (#6193)
|
||||
* Fix docs site page margin (#6214)
|
||||
|
||||
### Development Fixes
|
||||
|
||||
|
@ -23,16 +30,6 @@
|
|||
* Test with Ruby 2.4.1-1 on AppVeyor (#6176)
|
||||
* set minimum requirement for jekyll-feed (#6184)
|
||||
|
||||
### Minor Enhancements
|
||||
|
||||
* Use Warn for deprecation messages (#6192)
|
||||
* site template: Use plugins key instead of gems (#6045)
|
||||
|
||||
### Site Enhancements
|
||||
|
||||
* Small correction in documentation for includes (#6193)
|
||||
* Fix docs site page margin (#6214)
|
||||
|
||||
## 3.5.0 / 2017-06-18
|
||||
|
||||
### Minor Enhancements
|
||||
|
|
|
@ -4,6 +4,43 @@ permalink: "/docs/history/"
|
|||
note: This file is autogenerated. Edit /History.markdown instead.
|
||||
---
|
||||
|
||||
## 3.5.1 / 2017-07-17
|
||||
{: #v3-5-1}
|
||||
|
||||
### Minor Enhancements
|
||||
{: #minor-enhancements-v3-5-1}
|
||||
|
||||
- Use Warn for deprecation messages ([#6192]({{ site.repository }}/issues/6192))
|
||||
- site template: Use plugins key instead of gems ([#6045]({{ site.repository }}/issues/6045))
|
||||
|
||||
### Bug Fixes
|
||||
{: #bug-fixes-v3-5-1}
|
||||
|
||||
- Backward compatiblize URLFilters module ([#6163]({{ site.repository }}/issues/6163))
|
||||
- Static files contain front matter default keys when `to_liquid`'d ([#6162]({{ site.repository }}/issues/6162))
|
||||
- Always normalize the result of the `relative_url` filter ([#6185]({{ site.repository }}/issues/6185))
|
||||
|
||||
### Documentation
|
||||
|
||||
- Update reference to trouble with OS X/macOS ([#6139]({{ site.repository }}/issues/6139))
|
||||
- added BibSonomy plugin ([#6143]({{ site.repository }}/issues/6143))
|
||||
- add plugins for multiple page pagination ([#6055]({{ site.repository }}/issues/6055))
|
||||
- Update minimum Ruby version in installation.md ([#6164]({{ site.repository }}/issues/6164))
|
||||
- [docs] Add information about finding a collection in `site.collections` ([#6165]({{ site.repository }}/issues/6165))
|
||||
- Add {%raw%} to Liquid example on site ([#6179]({{ site.repository }}/issues/6179))
|
||||
- Added improved Pug plugin - removed 404 Jade plugin ([#6174]({{ site.repository }}/issues/6174))
|
||||
- Linking the link ([#6210]({{ site.repository }}/issues/6210))
|
||||
- Small correction in documentation for includes ([#6193]({{ site.repository }}/issues/6193))
|
||||
- Fix docs site page margin ([#6214]({{ site.repository }}/issues/6214))
|
||||
|
||||
### Development Fixes
|
||||
{: #development-fixes-v3-5-1}
|
||||
|
||||
- Add jekyll doctor to GitHub Issue Template ([#6169]({{ site.repository }}/issues/6169))
|
||||
- Test with Ruby 2.4.1-1 on AppVeyor ([#6176]({{ site.repository }}/issues/6176))
|
||||
- set minimum requirement for jekyll-feed ([#6184]({{ site.repository }}/issues/6184))
|
||||
|
||||
|
||||
## 3.5.0 / 2017-06-18
|
||||
{: #v3-5-0}
|
||||
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
---
|
||||
title: 'Jekyll 3.5.1 Released'
|
||||
date: 2017-07-17 12:40:37 -0400
|
||||
author: parkr
|
||||
version: 3.5.1
|
||||
categories: [release]
|
||||
---
|
||||
|
||||
We've released a few bugfixes in the form of v3.5.1 today:
|
||||
|
||||
- Some plugins stopped functioning properly due to a NoMethodError for `registers` on NilClass. That's been fixed.
|
||||
- A bug in `relative_url` when `baseurl` is `nil` caused URL's to come out wrong. Squashed.
|
||||
- Static files' liquid representations should now have all the keys you were expecting when serialized into JSON.
|
||||
|
||||
We apologize for the breakages! We're working diligently to improve how we test our plugins with Jekyll core to prevent breakages in the future.
|
||||
|
||||
More details in [the history](/docs/history/#v3-5-1). Many thanks to all the contributors to Jekyll v3.5.1: Adam Voss, ashmaroli, Ben Balter, Coby Chapple, Doug Beney, Fadhil, Florian Thomas, Frank Taillandier, James, jaybe, Joshua Byrd, Kevin Plattret, & Robert Jäschke.
|
||||
|
||||
Happy Jekylling!
|
|
@ -1 +1 @@
|
|||
3.5.0
|
||||
3.5.1
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module Jekyll
|
||||
VERSION = "3.5.0".freeze
|
||||
VERSION = "3.5.1".freeze
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue