Merge pull request #2365 from jekyll/release-2-0-3
This commit is contained in:
commit
f95aba2f73
|
@ -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)
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module Jekyll
|
||||
VERSION = '2.0.2'
|
||||
VERSION = '2.0.3'
|
||||
end
|
||||
|
|
|
@ -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!
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue