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 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..ac5e9d75 --- /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. + +As always, check out the [changelog](/docs/history/) for more info. Happy Jekylling! 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