From 78d169ce05ea395d0e2978ce54f81e153a1df04e Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Sat, 6 Jul 2013 14:58:35 +0200 Subject: [PATCH] Add post about Jekyll v1.0.3 --- ...-07-jekyll-1-dot-0-dot-3-released.markdown | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 site/_posts/2013-06-07-jekyll-1-dot-0-dot-3-released.markdown diff --git a/site/_posts/2013-06-07-jekyll-1-dot-0-dot-3-released.markdown b/site/_posts/2013-06-07-jekyll-1-dot-0-dot-3-released.markdown new file mode 100644 index 00000000..785bf6a1 --- /dev/null +++ b/site/_posts/2013-06-07-jekyll-1-dot-0-dot-3-released.markdown @@ -0,0 +1,24 @@ +--- +layout: news_item +title: "Jekyll 1.0.3 Released" +date: "2013-06-07 21:02:13 +0200" +author: parkr +categories: [release, jekyll] +--- + +_(Take a look at the [History][] page in the docs for more detailed information.)_ + +v1.0.3 contains some key enhancements and bug fixes: + +- Fail with non-zero exit code when MaRuKu errors ([#1190][]) or Liquid errors ([#1121][]) +- Add support for private gists to `gist` tag ([#1189][]) +- Add `--force` option to `jekyll new` ([#1115][]) +- Fix compatibility with `exclude` and `include` with pre-1.0 Jekyll ([#1114][]) +- Fix pagination issue regarding `File.basename` and `page:num` ([#1063][]) + +{% assign issue_numbers = "1190|1121|1189|1115|1114|1063" | split: "|" %} +{% for issue in issue_numbers %} +[#{{ issue }}]: https://github.com/mojombo/jekyll/issues/{{ issue }} +{% endfor %} + +[History]: /docs/history/#103__20130607