From 036823cd0658caef3c9c51855c006778016e0d90 Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Thu, 8 May 2014 22:43:04 -0400 Subject: [PATCH 1/4] Bump to :gem: v2.0.3 --- History.markdown | 10 ++++++++-- lib/jekyll/version.rb | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/History.markdown b/History.markdown index 933d4630..e2cdf17c 100644 --- a/History.markdown +++ b/History.markdown @@ -4,6 +4,14 @@ ### Minor Enhancements +### Bug Fixes + +### Development Fixes + +### Site Enhancements + +## 2.0.3 / 2014-05-08 + ### Bug Fixes * Properly prefix links in site template with URL or baseurl depending upon @@ -18,8 +26,6 @@ * Use `item_property` for `where` filter so it doesn't break on collections (#2359) * Rescue errors thrown so `--watch` doesn't fail (#2364) -### Development Fixes - ### Site Enhancements * Add missing "as" to assets docs page (#2337) diff --git a/lib/jekyll/version.rb b/lib/jekyll/version.rb index 3ef9734a..18840a56 100644 --- a/lib/jekyll/version.rb +++ b/lib/jekyll/version.rb @@ -1,3 +1,3 @@ module Jekyll - VERSION = '2.0.2' + VERSION = '2.0.3' end From 5a0eb41d1901d9d00fc0f0c86419726561d9d68a Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Thu, 8 May 2014 23:12:30 -0400 Subject: [PATCH 2/4] Add release post for v2.0.3 --- .../2014-05-08-jekyll-2-0-3-released.markdown | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 site/_posts/2014-05-08-jekyll-2-0-3-released.markdown diff --git a/site/_posts/2014-05-08-jekyll-2-0-3-released.markdown b/site/_posts/2014-05-08-jekyll-2-0-3-released.markdown new file mode 100644 index 00000000..1b07b7b8 --- /dev/null +++ b/site/_posts/2014-05-08-jekyll-2-0-3-released.markdown @@ -0,0 +1,18 @@ +--- +layout: news_item +title: 'Jekyll 2.0.3 Released' +date: 2014-05-08 22:43:17 -0400 +author: parkr +version: 2.0.3 +categories: [release] +--- + +Hey again! Just wanted to let you know we've released another version of Jekyll, jam-packed with bug fixes. + +A huge "thank you" is in order for all the folks who have submitted bug reports over the last 2 days — your input is what allows this project to continue. It's always a pain to deal with a MAJOR version bump release, but it's been pretty smooth so far and you have all been nice about the flaws you've found in the tool. Keep filing those reports so we can continue to make Jekyll even better! + +Thank you to the contributors that contributed code to 2.0.1, 2.0.2, and/or 2.0.3: + +Parker Moore, Yi Zeng, Gabe Ortiz, Aaron Broder, Alberto Grespan, gpxl, David Briggs, Kevin Ingersoll, and Troy Swanson. + +Happy Jekylling! From 4e8ddd5fa368bc3cf15013beda7a8d8228be830a Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Thu, 8 May 2014 23:12:44 -0400 Subject: [PATCH 3/4] Update history. --- site/docs/history.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/site/docs/history.md b/site/docs/history.md index fe024714..630fe248 100644 --- a/site/docs/history.md +++ b/site/docs/history.md @@ -5,6 +5,31 @@ permalink: "/docs/history/" prev_section: contributing --- +## 2.0.3 / 2014-05-08 + +### Bug Fixes + +- Properly prefix links in site template with URL or baseurl depending upon + need. ([#2319]({{ site.repository }}/issues/2319)) +- Update gist tag comments and error message to require username ([#2326]({{ site.repository }}/issues/2326)) +- Fix `permalink` setting in site template ([#2331]({{ site.repository }}/issues/2331)) +- Don't fail if any of the path objects are nil ([#2325]({{ site.repository }}/issues/2325)) +- Instantiate all descendants for converters and generators, not just + direct subclasses ([#2334]({{ site.repository }}/issues/2334)) +- Replace all instances of `site.name` with `site.title` in site template ([#2324]({{ site.repository }}/issues/2324)) +- `Jekyll::Filters#time` now accepts UNIX timestamps in string or number form ([#2339]({{ site.repository }}/issues/2339)) +- Use `item_property` for `where` filter so it doesn't break on collections ([#2359]({{ site.repository }}/issues/2359)) +- Rescue errors thrown so `--watch` doesn't fail ([#2364]({{ site.repository }}/issues/2364)) + +### Site Enhancements + +- Add missing "as" to assets docs page ([#2337]({{ site.repository }}/issues/2337)) +- Update docs to reflect new `baseurl` default ([#2341]({{ site.repository }}/issues/2341)) +- Add links to headers who have an ID. ([#2342]({{ site.repository }}/issues/2342)) +- Use symbol instead of HTML number in `upgrading.md` ([#2351]({{ site.repository }}/issues/2351)) +- Fix link to frontmatter defaults docs ([#2353]({{ site.repository }}/issues/2353)) +- Fix for `History.markdown` in order to fix history page in docs ([#2363]({{ site.repository }}/issues/2363)) + ## 2.0.2 / 2014-05-07 ### Bug Fixes From f93de58f3bb9777a08786fbb5706b07382988acc Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Thu, 8 May 2014 23:13:46 -0400 Subject: [PATCH 4/4] Link to the changelog. --- site/_posts/2014-05-08-jekyll-2-0-3-released.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/_posts/2014-05-08-jekyll-2-0-3-released.markdown b/site/_posts/2014-05-08-jekyll-2-0-3-released.markdown index 1b07b7b8..ac5e9d75 100644 --- a/site/_posts/2014-05-08-jekyll-2-0-3-released.markdown +++ b/site/_posts/2014-05-08-jekyll-2-0-3-released.markdown @@ -15,4 +15,4 @@ Thank you to the contributors that contributed code to 2.0.1, 2.0.2, and/or 2.0. Parker Moore, Yi Zeng, Gabe Ortiz, Aaron Broder, Alberto Grespan, gpxl, David Briggs, Kevin Ingersoll, and Troy Swanson. -Happy Jekylling! +As always, check out the [changelog](/docs/history/) for more info. Happy Jekylling!