Merge pull request #3117 from jekyll/release-2-5-2
This commit is contained in:
commit
665178d210
|
@ -2,6 +2,16 @@
|
||||||
|
|
||||||
### Major Enhancements
|
### Major Enhancements
|
||||||
|
|
||||||
|
### Minor Enhancements
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
### Development Fixes
|
||||||
|
|
||||||
|
### Site Enhancements
|
||||||
|
|
||||||
|
## 2.5.2 / 2014-11-17
|
||||||
|
|
||||||
### Minor Enhancements
|
### Minor Enhancements
|
||||||
|
|
||||||
* `post_url` should match `post.name` instead of slugs and dates (#3058)
|
* `post_url` should match `post.name` instead of slugs and dates (#3058)
|
||||||
|
@ -13,8 +23,6 @@
|
||||||
* Remove duplicate `Conversion error:` message in `Convertible` (#3088)
|
* Remove duplicate `Conversion error:` message in `Convertible` (#3088)
|
||||||
* Print full conversion error message in `Renderer#convert` (#3090)
|
* Print full conversion error message in `Renderer#convert` (#3090)
|
||||||
|
|
||||||
### Development Fixes
|
|
||||||
|
|
||||||
### Site Enhancements
|
### Site Enhancements
|
||||||
|
|
||||||
* Change variable names in Google Analytics script (#3093)
|
* Change variable names in Google Analytics script (#3093)
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module Jekyll
|
module Jekyll
|
||||||
VERSION = '2.5.1'
|
VERSION = '2.5.2'
|
||||||
end
|
end
|
||||||
|
|
|
@ -5,6 +5,37 @@ permalink: "/docs/history/"
|
||||||
prev_section: contributing
|
prev_section: contributing
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## 2.5.2 / 2014-11-17
|
||||||
|
{: #v2-5-2}
|
||||||
|
|
||||||
|
### Minor Enhancements
|
||||||
|
{: #minor-enhancements-v2-5-2}
|
||||||
|
|
||||||
|
- `post_url` should match `post.name` instead of slugs and dates ([#3058]({{ site.repository }}/issues/3058))
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
{: #bug-fixes-v2-5-2}
|
||||||
|
|
||||||
|
- Fix bundle require for `:jekyll_plugins` ([#3119]({{ site.repository }}/issues/3119))
|
||||||
|
- Remove duplicate regexp phrase: `^\A` ([#3089]({{ site.repository }}/issues/3089))
|
||||||
|
- Remove duplicate `Conversion error:` message in `Convertible` ([#3088]({{ site.repository }}/issues/3088))
|
||||||
|
- Print full conversion error message in `Renderer#convert` ([#3090]({{ site.repository }}/issues/3090))
|
||||||
|
|
||||||
|
### Site Enhancements
|
||||||
|
{: #site-enhancements-v2-5-2}
|
||||||
|
|
||||||
|
- Change variable names in Google Analytics script ([#3093]({{ site.repository }}/issues/3093))
|
||||||
|
- Mention CSV files in the docs for data files ([#3101]({{ site.repository }}/issues/3101))
|
||||||
|
- Add trailing slash to `paginate_path` example. ([#3091]({{ site.repository }}/issues/3091))
|
||||||
|
- Get rid of noifniof (`excerpt_separator`) ([#3094]({{ site.repository }}/issues/3094))
|
||||||
|
- Sass improvements, around nesting mostly. ([#3123]({{ site.repository }}/issues/3123))
|
||||||
|
- Add webmentions.io plugin to the list of third-party plugins ([#3127]({{ site.repository }}/issues/3127))
|
||||||
|
- Add Sass mixins and use them. ([#2904]({{ site.repository }}/issues/2904))
|
||||||
|
- Slightly compress jekyll-sticker.jpg. ([#3133]({{ site.repository }}/issues/3133))
|
||||||
|
- Update gridism and separate out related but custom styles. ([#3132]({{ site.repository }}/issues/3132))
|
||||||
|
- Add remote-include plugin to list of third-party plugins ([#3136]({{ site.repository }}/issues/3136))
|
||||||
|
|
||||||
|
|
||||||
## 2.5.1 / 2014-11-09
|
## 2.5.1 / 2014-11-09
|
||||||
{: #v2-5-1}
|
{: #v2-5-1}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
---
|
||||||
|
layout: news_item
|
||||||
|
title: 'Jekyll 2.5.2 Released'
|
||||||
|
date: 2014-11-12 18:49:08 -0800
|
||||||
|
author: parkr
|
||||||
|
version: 2.5.2
|
||||||
|
categories: [release]
|
||||||
|
---
|
||||||
|
|
||||||
|
A very minor release, 2.5.2 fixes a bug with path sanitation that 2.5.1
|
||||||
|
introduced. It also improves the `post_url` tag such that it checks the
|
||||||
|
posts' name (e.g. `2014-03-03-my-cool-post`) instead of a compiled time and
|
||||||
|
name. This fixes issues where posts are created and the day changes based
|
||||||
|
on timezone discrepancies.
|
||||||
|
|
||||||
|
[Full history here.](/docs/history/)
|
||||||
|
|
||||||
|
Happy Jekylling!
|
|
@ -1 +1 @@
|
||||||
2.5.1
|
2.5.2
|
Loading…
Reference in New Issue