diff --git a/History.markdown b/History.markdown index 2af60264..531a37ae 100644 --- a/History.markdown +++ b/History.markdown @@ -2,6 +2,16 @@ ### Major Enhancements +### Minor Enhancements + +### Bug Fixes + +### Development Fixes + +### Site Enhancements + +## 2.5.2 / 2014-11-17 + ### Minor Enhancements * `post_url` should match `post.name` instead of slugs and dates (#3058) @@ -13,8 +23,6 @@ * Remove duplicate `Conversion error:` message in `Convertible` (#3088) * Print full conversion error message in `Renderer#convert` (#3090) -### Development Fixes - ### Site Enhancements * Change variable names in Google Analytics script (#3093) diff --git a/lib/jekyll/version.rb b/lib/jekyll/version.rb index 4bd484c2..4df11160 100644 --- a/lib/jekyll/version.rb +++ b/lib/jekyll/version.rb @@ -1,3 +1,3 @@ module Jekyll - VERSION = '2.5.1' + VERSION = '2.5.2' end diff --git a/site/_docs/history.md b/site/_docs/history.md index eaac0277..036a4c99 100644 --- a/site/_docs/history.md +++ b/site/_docs/history.md @@ -5,6 +5,37 @@ permalink: "/docs/history/" 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 {: #v2-5-1} diff --git a/site/_posts/2014-11-12-jekyll-2-5-2-released.markdown b/site/_posts/2014-11-12-jekyll-2-5-2-released.markdown new file mode 100644 index 00000000..3eab8998 --- /dev/null +++ b/site/_posts/2014-11-12-jekyll-2-5-2-released.markdown @@ -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! diff --git a/site/latest_version.txt b/site/latest_version.txt index 4fd0fe3c..21b159dc 100644 --- a/site/latest_version.txt +++ b/site/latest_version.txt @@ -1 +1 @@ -2.5.1 \ No newline at end of file +2.5.2 \ No newline at end of file