Posts! YAY!
This commit is contained in:
parent
4687b1f010
commit
f150ae209e
|
@ -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/
|
|
@ -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 `</div>` 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/
|
|
@ -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="<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/
|
Loading…
Reference in New Issue