From f150ae209e98e507ffb5bd19dbab03c341aba2bd Mon Sep 17 00:00:00 2001 From: Parker Moore Date: Sun, 12 May 2013 14:40:08 +0200 Subject: [PATCH] Posts! YAY! --- ...-06-jekyll-1-dot-0-dot-0-released.markdown | 22 +++++++++++++++ ...-08-jekyll-1-dot-0-dot-1-released.markdown | 26 ++++++++++++++++++ ...-12-jekyll-1-dot-0-dot-2-released.markdown | 27 +++++++++++++++++++ 3 files changed, 75 insertions(+) create mode 100644 site/_posts/2013-05-06-jekyll-1-dot-0-dot-0-released.markdown create mode 100644 site/_posts/2013-05-08-jekyll-1-dot-0-dot-1-released.markdown create mode 100644 site/_posts/2013-05-12-jekyll-1-dot-0-dot-2-released.markdown diff --git a/site/_posts/2013-05-06-jekyll-1-dot-0-dot-0-released.markdown b/site/_posts/2013-05-06-jekyll-1-dot-0-dot-0-released.markdown new file mode 100644 index 00000000..5f092e1b --- /dev/null +++ b/site/_posts/2013-05-06-jekyll-1-dot-0-dot-0-released.markdown @@ -0,0 +1,22 @@ +--- +layout: news +title: "Jekyll 1.0.0 Released" +date: "2013-05-06 02:12:52 +0200" +author: parkr +categories: [release, jekyll] +--- + +Hey! After many months of hard works by Jekyll's contributors, we're excited +to announce the first major release of the project in a long while. v1.0.0 is +finally here! While the list of improvements and bug fixes is [quite lengthy][history], +here are the highlights (thanks to @BenBalter for the examples and for compiling +this list): + +- Support for the Gist tag for easily embedding Gists ([example](https://gist.github.com/benbalter/5555251)) +- Automatically generated post excerpts ([example](https://gist.github.com/benbalter/5555369)) +- Save and preview drafts before publishing ([example](https://gist.github.com/benbalter/5555992)) + +_(Take a look at the [Upgrading][] page in the docs for more detailed information.)_ + +[history]: https://github.com/mojombo/jekyll/blob/master/History.markdown#100--2013-05-06 +[Upgrading]: /docs/upgrading/ \ No newline at end of file diff --git a/site/_posts/2013-05-08-jekyll-1-dot-0-dot-1-released.markdown b/site/_posts/2013-05-08-jekyll-1-dot-0-dot-1-released.markdown new file mode 100644 index 00000000..40df901a --- /dev/null +++ b/site/_posts/2013-05-08-jekyll-1-dot-0-dot-1-released.markdown @@ -0,0 +1,26 @@ +--- +layout: news +title: "Jekyll 1.0.1 Released" +date: "2013-05-08 23:46:11 +0200" +author: parkr +categories: [release, jekyll] +--- + +_(Take a look at the [Upgrading][] page in the docs for more detailed information.)_ + +Hot on the trails of v1.0, v1.0.1 is out! Here are the highlights: + +* Add newer `language-` class name prefix to code blocks ([#1037][]) +* Commander error message now preferred over process abort with incorrect args ([#1040][]) +* Do not force use of toc_token when using generate_toc in RDiscount ([#1048][]) +* Make Redcarpet respect the pygments configuration option ([#1053][]) +* Fix the index build with LSI ([#1045][]) +* Don't print deprecation warning when no arguments are specified. ([#1041][]) +* Add missing `` to site template used by `new` subcommand, fixed typos in code ([#1032][]) + +{% assign issue_numbers = "1037|1040|1048|1053|1045|1041|1032" | split: "|" %} +{% for issue in issue_numbers %} +[#{{ issue }}]: https://github.com/mojombo/jekyll/issues/{{ issue }} +{% endfor %} + +[Upgrading]: /docs/upgrading/ \ No newline at end of file diff --git a/site/_posts/2013-05-12-jekyll-1-dot-0-dot-2-released.markdown b/site/_posts/2013-05-12-jekyll-1-dot-0-dot-2-released.markdown new file mode 100644 index 00000000..95bd3a61 --- /dev/null +++ b/site/_posts/2013-05-12-jekyll-1-dot-0-dot-2-released.markdown @@ -0,0 +1,27 @@ +--- +layout: news +title: "Jekyll 1.0.2 Released" +date: "2013-05-12 14:45:00 +0200" +author: parkr +categories: [release, jekyll] +--- + +_(Take a look at the [Upgrading][] page in the docs for more detailed information.)_ + +v1.0.2 has some key bugfixes that optionally restore some behaviour from pre-1.0 +releases, and fix some other annoying bugs: + +* Backwards-compatibilize relative permalinks ([#1081][]) +* Add `jekyll doctor` command to check site for any known compatibility problems ([#1081][]) +* Deprecate old config `server_port`, match to `port` if `port` isn't set ([#1084][]) +* Update pygments.rb and kramdon versions to 0.5.0 and 1.0.2, respectively ([#1061][], [#1067][]) +* Fix issue when post categories are numbers ([#1078][]) +* Add a `data-lang=""` attribute to Redcarpet code blocks ([#1066][]) +* Catching that Redcarpet gem isn't installed ([#1059][]) + +{% assign issue_numbers = "1059|1061|1066|1067|1078|1081|1084" | split: "|" %} +{% for issue in issue_numbers %} +[#{{ issue }}]: https://github.com/mojombo/jekyll/issues/{{ issue }} +{% endfor %} + +[Upgrading]: /docs/upgrading/ \ No newline at end of file