jekyll 2.1.1 → 2.2.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of jekyll might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/History.markdown +36 -3
- data/Rakefile +20 -1
- data/features/post_data.feature +41 -6
- data/jekyll.gemspec +7 -4
- data/lib/jekyll.rb +53 -50
- data/lib/jekyll/command.rb +1 -1
- data/lib/jekyll/commands/build.rb +1 -1
- data/lib/jekyll/converters/markdown.rb +23 -4
- data/lib/jekyll/converters/markdown/kramdown_parser.rb +1 -1
- data/lib/jekyll/converters/markdown/maruku_parser.rb +1 -1
- data/lib/jekyll/converters/markdown/rdiscount_parser.rb +1 -5
- data/lib/jekyll/converters/markdown/redcarpet_parser.rb +31 -36
- data/lib/jekyll/converters/textile.rb +2 -2
- data/lib/jekyll/convertible.rb +12 -0
- data/lib/jekyll/deprecator.rb +19 -1
- data/lib/jekyll/errors.rb +6 -1
- data/lib/jekyll/excerpt.rb +0 -1
- data/lib/jekyll/frontmatter_defaults.rb +120 -122
- data/lib/jekyll/post.rb +3 -1
- data/lib/jekyll/renderer.rb +12 -0
- data/lib/jekyll/site.rb +2 -2
- data/lib/jekyll/tags/highlight.rb +24 -3
- data/lib/jekyll/tags/include.rb +0 -4
- data/lib/jekyll/version.rb +1 -1
- data/script/cibuild +4 -1
- data/script/proof +22 -0
- data/script/test +8 -2
- data/site/_config.yml +0 -1
- data/site/_posts/2013-05-06-jekyll-1-0-0-released.markdown +1 -1
- data/site/_posts/2013-05-08-jekyll-1-0-1-released.markdown +1 -1
- data/site/_posts/2013-05-12-jekyll-1-0-2-released.markdown +1 -1
- data/site/_posts/2013-06-07-jekyll-1-0-3-released.markdown +1 -1
- data/site/_posts/2014-03-24-jekyll-1-5-0-released.markdown +1 -1
- data/site/_posts/2014-05-06-jekyll-turns-2-0-0.markdown +2 -2
- data/site/_posts/2014-06-28-jekyll-turns-21-i-mean-2-1-0.markdown +1 -1
- data/site/_posts/2014-07-29-jekyll-2-2-0-released.markdown +19 -0
- data/site/docs/assets.md +17 -3
- data/site/docs/contributing.md +1 -1
- data/site/docs/deployment-methods.md +15 -2
- data/site/docs/extras.md +3 -75
- data/site/docs/github-pages.md +1 -1
- data/site/docs/history.md +260 -3
- data/site/docs/index.md +1 -1
- data/site/docs/installation.md +1 -1
- data/site/docs/plugins.md +6 -2
- data/site/docs/posts.md +3 -3
- data/site/docs/resources.md +3 -6
- data/site/docs/troubleshooting.md +0 -10
- data/site/index.html +1 -1
- data/test/test_command.rb +1 -1
- data/test/test_kramdown.rb +1 -1
- data/test/test_post.rb +17 -2
- data/test/test_site.rb +5 -5
- data/test/test_tags.rb +33 -2
- metadata +20 -19
- data/site/docs/heroku.md +0 -9
data/lib/jekyll/tags/include.rb
CHANGED
@@ -131,10 +131,6 @@ eos
|
|
131
131
|
File.exist?(path) && File.realpath(path).start_with?(dir)
|
132
132
|
end
|
133
133
|
|
134
|
-
def blank?
|
135
|
-
false
|
136
|
-
end
|
137
|
-
|
138
134
|
# This method allows to modify the file content by inheriting from the class.
|
139
135
|
def source(file, context)
|
140
136
|
File.read(file, file_read_opts(context))
|
data/lib/jekyll/version.rb
CHANGED
data/script/cibuild
CHANGED
data/script/proof
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
#! /bin/bash
|
2
|
+
#
|
3
|
+
# Usage:
|
4
|
+
# script/proof
|
5
|
+
|
6
|
+
set -e
|
7
|
+
|
8
|
+
git diff --name-only origin $(git log --pretty=format:"%h" -2 | tail -1) | grep '^site/' || {
|
9
|
+
echo "No site files changed. We'll skip proofing."
|
10
|
+
exit 0
|
11
|
+
}
|
12
|
+
|
13
|
+
echo "Some site files have been changed! Proofing..."
|
14
|
+
|
15
|
+
command -v htmlproof || {
|
16
|
+
echo "Installing HTML::Proofer!"
|
17
|
+
gem install html-proofer -- --use-system-libraries
|
18
|
+
}
|
19
|
+
|
20
|
+
bundle exec jekyll build -s site -d _site --trace
|
21
|
+
printf "\e[0;36mProofing begins now!\e[0m\n"
|
22
|
+
htmlproof ./_site
|
data/script/test
CHANGED
@@ -1,11 +1,17 @@
|
|
1
1
|
#! /bin/bash
|
2
|
+
#
|
3
|
+
# Usage:
|
4
|
+
# script/test
|
5
|
+
# script/test <hi>
|
2
6
|
|
3
7
|
set -x
|
4
8
|
|
5
9
|
if [ -z "$1" ]; then
|
6
|
-
TEST_FILES="test/
|
10
|
+
TEST_FILES="test/test_*.rb"
|
7
11
|
else
|
8
12
|
TEST_FILES="$@"
|
9
13
|
fi
|
10
14
|
|
11
|
-
|
15
|
+
set -x
|
16
|
+
|
17
|
+
bundle exec rake
|
data/site/_config.yml
CHANGED
@@ -22,10 +22,10 @@ Check out our [changelog][] for a complete list of all (200+) changes.
|
|
22
22
|
|
23
23
|
Many thanks to these 183 contributors for making Jekyll 2.0.0 happen:
|
24
24
|
|
25
|
-
Parker Moore, Matt Rogers, maul.esel, Anatol Broder, Zach Gersh, Joel Glovier, Ben Balter, XhmikosR, Coby Chapple, John Piasetzki, Aidan Feldman, Robin Dupret, Pascal Borreli, Troy Swanson, Erik Michaels-Ober, albertogg, Lucas Jenss, Matt Rogers & Persa Zula, Eric Mill, Shigeya Suzuki, Jens Nazarenus, ddavison, Pat Hawks, Rob Wierzbowski, MURAOKA Taro, Casey Lang, Fabian Rodriguez, Greg Karékinian, Zlatan Vasović, Christopher Nicotera, Dmitry Chestnykh, Ryan Morrissey, Jordon, John Hughes, akira yamada, Matt Swanson, Jashank Jeremy, Matthew Iversen, Meeka, liufengyun, Anand Narayan, nitoyon, Geoff Shannon, Benjamin J. Balter, Juan Ignacio Donoso, David Briggs, Benjamin Esham, Slava Pavlutin, Assaf Gelber, Josh Brown, Nick Fagerlund, Davide Ficano, pilosus, Anthony Smith, André Arko, Mikael Konutgan, Matthew Scharley, Dan Tao, scribu, Mort Yao, m, Stephen McDonald, Marcus Stollsteimer, Thomas Torsney-Weir, Jordon Bedwell, Tom Preston-Werner, Lincoln Mullen, Philip Poots, Ivan Tse, Christopher Giroir, Valery Tolstov, Wlodek Bzyl, Xavier Noria, Yi Zeng, Persa Zula, Phil Leggetter, Pirogov Evgenij, Rafael Revi, Rob McGuire-Dale, Rob Muhlestein, Robin Mehner, Roland Warmerdam, Rusty Geldmacher, Sam Rayner, Santeri Paavolainen, Sebastian Morr, Stephan Groß, Steven Spasbo, Tobias Brunner, Tuomas Kareinen, Tyler Margison, Uwe Dauernheim, Yihang Ho, Zach Leatherman, Zequez, andrew morton, andrewhavens, imathis, jannypie, jaybe@jekyll, kk_Ataka, markets, redwallhp, schneems, szymzet, thomasdao, tomsugden,
|
25
|
+
Parker Moore, Matt Rogers, maul.esel, Anatol Broder, Zach Gersh, Joel Glovier, Ben Balter, XhmikosR, Coby Chapple, John Piasetzki, Aidan Feldman, Robin Dupret, Pascal Borreli, Troy Swanson, Erik Michaels-Ober, albertogg, Lucas Jenss, Matt Rogers & Persa Zula, Eric Mill, Shigeya Suzuki, Jens Nazarenus, ddavison, Pat Hawks, Rob Wierzbowski, MURAOKA Taro, Casey Lang, Fabian Rodriguez, Greg Karékinian, Zlatan Vasović, Christopher Nicotera, Dmitry Chestnykh, Ryan Morrissey, Jordon, John Hughes, akira yamada, Matt Swanson, Jashank Jeremy, Matthew Iversen, Meeka, liufengyun, Anand Narayan, nitoyon, Geoff Shannon, Benjamin J. Balter, Juan Ignacio Donoso, David Briggs, Benjamin Esham, Slava Pavlutin, Assaf Gelber, Josh Brown, Nick Fagerlund, Davide Ficano, pilosus, Anthony Smith, André Arko, Mikael Konutgan, Matthew Scharley, Dan Tao, scribu, Mort Yao, m, Stephen McDonald, Marcus Stollsteimer, Thomas Torsney-Weir, Jordon Bedwell, Tom Preston-Werner, Lincoln Mullen, Philip Poots, Ivan Tse, Christopher Giroir, Valery Tolstov, Wlodek Bzyl, Xavier Noria, Yi Zeng, Persa Zula, Phil Leggetter, Pirogov Evgenij, Rafael Revi, Rob McGuire-Dale, Rob Muhlestein, Robin Mehner, Roland Warmerdam, Rusty Geldmacher, Sam Rayner, Santeri Paavolainen, Sebastian Morr, Stephan Groß, Steven Spasbo, Tobias Brunner, Tuomas Kareinen, Tyler Margison, Uwe Dauernheim, Yihang Ho, Zach Leatherman, Zequez, andrew morton, andrewhavens, imathis, jannypie, jaybe@jekyll, kk_Ataka, markets, redwallhp, schneems, szymzet, thomasdao, tomsugden, wǒis神仙, 张君君, Noah Slater, Abhi Yerra, Adam Heckler, Ahmed Hazem, Aigars Dzerviniks, Aleksey V. Zapparov, Andreas Möller, Andy Lindeman, Arlen Cuss, Aziz Shamim, Ben Baker-Smith, Ben Hanzl, Ben Hildred, Brian Kim, Brice, Carol Nichols, Chezou, Chris Jones, Christian Grobmeier, Christoph Hochstrasser, Christoph Schiessl, Clint Shryock, Colin Dean, Corey Ward, Damian Lettie, Daniel Schauenberg, David Ensinger, David Paschich, David Sawyer, David Silva Smith, Donald Perry, Doug Johnston, Edward Ball, Eric Dobson, Erik Dungan, Florent Guilleux, Francis, Frederic ROS, GSI2013, Garen Torikian, George Anderson, Giuseppe Capizzi, Ishibashi Hideto, Jarrod Birch, Jeff Kolesky, Jens Bissinger, Jens Krause, John Firebaugh, John Papandriopoulos, Josh Branchaud, Katy DeCorah, Lachlan Holden, Mark Prins, Markus Roth, Martin Charles, Matt Iversen, Matt Sheehan, Matt Swensen, Matthias Vogelgesang, Michael Parker, Miha Rekar, Nathan Youngman, Nick Quaranto, Nick Quinlan, Nick Schonning, Nicolas Alpi, Nicolás Reynolds, Nikkau, 4ensicLog, Octavian Damiean, Olov Lassus, PatrickC8t, Paul Annesley, and Paul Oppenheim.
|
26
26
|
|
27
27
|
Happy developing!
|
28
28
|
|
29
29
|
[changelog]: /docs/history/
|
30
30
|
[@jglovier]: https://github.com/jglovier
|
31
|
-
[jekyll-1]:
|
31
|
+
[jekyll-1]: /news/2013/05/06/jekyll-1-0-0-released/
|
@@ -0,0 +1,19 @@
|
|
1
|
+
---
|
2
|
+
layout: news_item
|
3
|
+
title: 'Jekyll 2.2.0 Released'
|
4
|
+
date: 2014-07-29 18:59:13 -0400
|
5
|
+
author: parkr
|
6
|
+
version: 2.2.0
|
7
|
+
categories: [release]
|
8
|
+
---
|
9
|
+
|
10
|
+
Jekyll 2.2.0 contains a few key updates:
|
11
|
+
|
12
|
+
1. A warning will now fire if you specify a layout in any of your pages or
|
13
|
+
posts that doesn't exist.
|
14
|
+
2. Certain Pygments options are now whitelisted in safe mode
|
15
|
+
3. Categories in a post's path are now respected (i.e. folders in `_posts`
|
16
|
+
will now work properly).
|
17
|
+
|
18
|
+
As always, a full list of the updates are on the
|
19
|
+
[history page](/docs/history#v2-2-0). Happy Jekylling!
|
data/site/docs/assets.md
CHANGED
@@ -21,9 +21,9 @@ or `.coffee`) and start the file with two lines of triple dashes, like this:
|
|
21
21
|
|
22
22
|
Jekyll treats these files the same as a regular page, in that the output file
|
23
23
|
will be placed in the same directory that it came from. For instance, if you
|
24
|
-
have a file named
|
24
|
+
have a file named `css/styles.scss` in your site's source folder, Jekyll
|
25
25
|
will process it and put it in your site's destination folder under
|
26
|
-
|
26
|
+
`css/styles.css`.
|
27
27
|
|
28
28
|
## Sass/SCSS
|
29
29
|
|
@@ -38,7 +38,21 @@ sass:
|
|
38
38
|
sass_dir: _sass
|
39
39
|
{% endhighlight %}
|
40
40
|
|
41
|
-
The Sass converter will default
|
41
|
+
The Sass converter will default the `sass_dir` configuration option to
|
42
|
+
`_sass`.
|
43
|
+
|
44
|
+
<div class="note info">
|
45
|
+
<h5>The <code>sass_dir</code> is only used by Sass</h5>
|
46
|
+
<p>
|
47
|
+
|
48
|
+
Note that the `sass_dir` becomes the load path for Sass imports,
|
49
|
+
nothing more. This means that Jekyll does not know about these files
|
50
|
+
directly, so any files here should not contain the YAML front matter as
|
51
|
+
described above nor will they be transformed as described above. This
|
52
|
+
folder should only contain imports.
|
53
|
+
|
54
|
+
</p>
|
55
|
+
</div>
|
42
56
|
|
43
57
|
You may also specify the output style with the `style` option in your
|
44
58
|
`_config.yml` file:
|
data/site/docs/contributing.md
CHANGED
@@ -106,7 +106,7 @@ The [Jekyll wiki]({{ site.repository }}/wiki) on GitHub
|
|
106
106
|
can be freely updated without a pull request as all
|
107
107
|
GitHub users have access.
|
108
108
|
|
109
|
-
If you want to add your plugin to the [list of plugins](/docs/plugins/#
|
109
|
+
If you want to add your plugin to the [list of plugins](/docs/plugins/#available-plugins),
|
110
110
|
please submit a pull request modifying the [plugins page source
|
111
111
|
file]({{ site.repository }}/blob/master/site/docs/plugins.md) by adding a
|
112
112
|
link to your plugin under the proper subheading depending upon its type.
|
@@ -73,10 +73,23 @@ Deploying is now as easy as telling nginx or Apache to look at
|
|
73
73
|
laptops$ git push deploy master
|
74
74
|
{% endhighlight %}
|
75
75
|
|
76
|
+
### Jekyll-hook
|
77
|
+
|
78
|
+
You can also use jekyll-hook, a server that listens for webhook posts from
|
79
|
+
GitHub, generates a website with Jekyll, and moves it somewhere to be
|
80
|
+
published. Use this to run your own GitHub Pages-style web server.
|
81
|
+
|
82
|
+
This method is useful if you need to serve your websites behind a firewall,
|
83
|
+
need extra server-level features like HTTP basic authentication or want to
|
84
|
+
host your site directly on a CDN or file host like S3.
|
85
|
+
|
86
|
+
Setup steps are fully documented
|
87
|
+
[in the `jekyll-hook` repo](https://github.com/developmentseed/jekyll-hook).
|
88
|
+
|
76
89
|
### Rake
|
77
90
|
|
78
91
|
Another way to deploy your Jekyll site is to use [Rake](https://github.com/jimweirich/rake), [HighLine](https://github.com/JEG2/highline), and
|
79
|
-
[Net::SSH](
|
92
|
+
[Net::SSH](https://github.com/net-ssh/net-ssh). A more complex example of deploying Jekyll with Rake that deals with multiple branches can be found in [Git Ready](https://github.com/gitready/gitready/blob/cdfbc4ec5321ff8d18c3ce936e9c749dbbc4f190/Rakefile).
|
80
93
|
|
81
94
|
### rsync
|
82
95
|
|
@@ -86,7 +99,7 @@ this script from within Textmate.
|
|
86
99
|
|
87
100
|
## Rack-Jekyll
|
88
101
|
|
89
|
-
[Rack-Jekyll](https://github.com/adaoraul/rack-jekyll/) is an easy way to deploy your site on any Rack server such as Amazon EC2, Slicehost, Heroku, and so forth. It also can run with [shotgun](https://github.com/
|
102
|
+
[Rack-Jekyll](https://github.com/adaoraul/rack-jekyll/) is an easy way to deploy your site on any Rack server such as Amazon EC2, Slicehost, Heroku, and so forth. It also can run with [shotgun](https://github.com/rtomayko/shotgun/), [rackup](https://github.com/rack/rack), [mongrel](https://github.com/mongrel/mongrel), [unicorn](https://github.com/defunkt/unicorn/), and [others](https://github.com/adaoraul/rack-jekyll#readme).
|
90
103
|
|
91
104
|
Read [this post](http://blog.crowdint.com/2010/08/02/instant-blog-using-jekyll-and-heroku.html) on how to deploy to Heroku using Rack-Jekyll.
|
92
105
|
|
data/site/docs/extras.md
CHANGED
@@ -9,82 +9,10 @@ permalink: /docs/extras/
|
|
9
9
|
There are a number of (optional) extra features that Jekyll supports that you
|
10
10
|
may want to install, depending on how you plan to use Jekyll.
|
11
11
|
|
12
|
-
##
|
12
|
+
## Math Support
|
13
13
|
|
14
|
-
|
15
|
-
(Version 0.6) which must be in your `$PATH` along with `dvips`.
|
14
|
+
Kramdown comes with optional support for LaTeX to PNG rendering via [MathJax](http://www.mathjax.org/) within math blocks. See the Kramdown documentation on [math blocks](http://kramdown.gettalong.org/syntax.html#math-blocks) and [math support](http://kramdown.gettalong.org/converter/html.html#math-support) for more details.
|
16
15
|
|
17
16
|
## Alternative Markdown Processors
|
18
17
|
|
19
|
-
|
20
|
-
of the other three pre-defined markdown parsers or define your own.
|
21
|
-
|
22
|
-
### RDiscount
|
23
|
-
|
24
|
-
If you prefer to use [RDiscount](https://github.com/rtomayko/rdiscount) instead
|
25
|
-
of [Maruku](https://github.com/bhollis/maruku) for Markdown, just make sure you have
|
26
|
-
it installed:
|
27
|
-
|
28
|
-
{% highlight bash %}
|
29
|
-
$ [sudo] gem install rdiscount
|
30
|
-
{% endhighlight %}
|
31
|
-
|
32
|
-
And then specify RDiscount as the Markdown engine in your `_config.yml` file to
|
33
|
-
have Jekyll run with that option.
|
34
|
-
|
35
|
-
{% highlight yaml %}
|
36
|
-
# In _config.yml
|
37
|
-
markdown: rdiscount
|
38
|
-
{% endhighlight %}
|
39
|
-
|
40
|
-
### Kramdown
|
41
|
-
|
42
|
-
You can also use [Kramdown](http://kramdown.rubyforge.org/) instead of Maruku
|
43
|
-
for Markdown. Make sure that Kramdown is installed:
|
44
|
-
|
45
|
-
{% highlight bash %}
|
46
|
-
$ [sudo] gem install kramdown
|
47
|
-
{% endhighlight %}
|
48
|
-
|
49
|
-
Then you can specify Kramdown as the Markdown engine in `_config.yml`.
|
50
|
-
|
51
|
-
{% highlight yaml %}
|
52
|
-
# In _config.yml
|
53
|
-
markdown: kramdown
|
54
|
-
{% endhighlight %}
|
55
|
-
|
56
|
-
Kramdown has various options for customizing the HTML output. The
|
57
|
-
[Configuration](/docs/configuration/) page lists the default options used by
|
58
|
-
Jekyll. A complete list of options is also available on the [Kramdown
|
59
|
-
website](http://kramdown.rubyforge.org/options.html).
|
60
|
-
|
61
|
-
### User-Defined
|
62
|
-
|
63
|
-
So, you're totally at odds with our four built-in markdown parsers, eh? No
|
64
|
-
sweat. You can define one as a plugin:
|
65
|
-
|
66
|
-
{% highlight ruby %}
|
67
|
-
require 'jekyll'
|
68
|
-
require 'some_renderer'
|
69
|
-
|
70
|
-
class Jekyll::Converters::Markdown::MyCustomParser
|
71
|
-
def initialize(config)
|
72
|
-
@site_config = config
|
73
|
-
end
|
74
|
-
|
75
|
-
def convert(content)
|
76
|
-
# (this _must_ return the resulting String after the rendering)
|
77
|
-
SomeRenderer.new(@site_config).to_html(content)
|
78
|
-
end
|
79
|
-
end
|
80
|
-
{% endhighlight %}
|
81
|
-
|
82
|
-
Once you've got that setup, ask Jekyll to use your custom markdown parser in
|
83
|
-
your `_config.yml` file:
|
84
|
-
|
85
|
-
{% highlight yaml %}
|
86
|
-
markdown: MyCustomParser
|
87
|
-
{% endhighlight %}
|
88
|
-
|
89
|
-
(Note that this **is case-sensitive**, and is only the piece after
|
90
|
-
`Jekyll::Converters::Markdown`.) And there you are!
|
18
|
+
See the Markdown section on the [configuration page](/docs/configuration/#markdown-options) for instructions on how to use and configure alternative Markdown processors, as well as how to create [custom processors](/docs/configuration/#custom-markdown-processors).
|
data/site/docs/github-pages.md
CHANGED
@@ -8,7 +8,7 @@ permalink: /docs/github-pages/
|
|
8
8
|
|
9
9
|
[GitHub Pages](http://pages.github.com) are public web pages for users,
|
10
10
|
organizations, and repositories, that are freely hosted on GitHub's
|
11
|
-
|
11
|
+
`github.io` domain or on a custom domain name of your choice. GitHub Pages are
|
12
12
|
powered by Jekyll behind the scenes, so in addition to supporting regular HTML
|
13
13
|
content, they’re also a great way to host your Jekyll-powered website for free.
|
14
14
|
|
data/site/docs/history.md
CHANGED
@@ -5,9 +5,69 @@ permalink: "/docs/history/"
|
|
5
5
|
prev_section: contributing
|
6
6
|
---
|
7
7
|
|
8
|
+
## 2.2.0 / 2014-07-29
|
9
|
+
{: #v2-2-0}
|
10
|
+
|
11
|
+
### Minor Enhancements
|
12
|
+
{: #minor-enhancements-v2-2-0}
|
13
|
+
|
14
|
+
- Throw a warning if the specified layout does not exist ([#2620]({{ site.repository }}/issues/2620))
|
15
|
+
- Whitelist Pygments options in safe mode ([#2642]({{ site.repository }}/issues/2642))
|
16
|
+
|
17
|
+
### Bug Fixes
|
18
|
+
{: #bug-fixes-v2-2-0}
|
19
|
+
|
20
|
+
- Remove unnecessary `Jekyll::Tags::IncludeTag#blank?` method ([#2625]({{ site.repository }}/issues/2625))
|
21
|
+
- Categories in the path are ignored ([#2633]({{ site.repository }}/issues/2633))
|
22
|
+
|
23
|
+
### Development Fixes
|
24
|
+
{: #development-fixes-v2-2-0}
|
25
|
+
|
26
|
+
- Refactoring Errors & Requires of Third-Party stuff ([#2591]({{ site.repository }}/issues/2591))
|
27
|
+
- Add further tests for categories ([#2584]({{ site.repository }}/issues/2584))
|
28
|
+
- Proof site with html-proofer on change ([#2605]({{ site.repository }}/issues/2605))
|
29
|
+
- Fix up bug in [#2605]({{ site.repository }}/issues/2605) which caused proofing the site not to function ([#2608]({{ site.repository }}/issues/2608))
|
30
|
+
- Use `bundle exec` in `script/proof` ([#2610]({{ site.repository }}/issues/2610))
|
31
|
+
|
32
|
+
### Site Enhancements
|
33
|
+
{: #site-enhancements-v2-2-0}
|
34
|
+
|
35
|
+
- Update Kramdown urls ([#2588]({{ site.repository }}/issues/2588))
|
36
|
+
- Add `Jekyll::AutolinkEmail` and `Jekyll::GitMetadata` to the list of
|
37
|
+
third-party plugins ([#2596]({{ site.repository }}/issues/2596))
|
38
|
+
- Fix a bunch of broken links in the site ([#2601]({{ site.repository }}/issues/2601))
|
39
|
+
- Replace dead links with working links ([#2611]({{ site.repository }}/issues/2611))
|
40
|
+
- Add jekyll-hook to deployment methods ([#2617]({{ site.repository }}/issues/2617))
|
41
|
+
- Added kramdown-with-pygments plugin to the list of third-party plugins ([#2623]({{ site.repository }}/issues/2623))
|
42
|
+
- Update outdated "Extras" page and remove duplicate documentation ([#2622]({{ site.repository }}/issues/2622))
|
43
|
+
- Add co2 plugin to list of third-party plugins ([#2639]({{ site.repository }}/issues/2639))
|
44
|
+
- Attempt to clarify the way Sass imports happen ([#2642]({{ site.repository }}/issues/2642))
|
45
|
+
|
46
|
+
|
47
|
+
## 2.1.1 / 2014-07-01
|
48
|
+
{: #v2-1-1}
|
49
|
+
|
50
|
+
### Bug Fixes
|
51
|
+
{: #bug-fixes-v2-1-1}
|
52
|
+
|
53
|
+
- Patch read vulnerabilities for data & confirm none for layouts ([#2563]({{ site.repository }}/issues/2563))
|
54
|
+
- Update Maruku dependency to allow use of the latest version ([#2576]({{ site.repository }}/issues/2576))
|
55
|
+
- Remove conditional assignment from document URL to prevent stale urls ([#2575]({{ site.repository }}/issues/2575))
|
56
|
+
|
57
|
+
### Site Enhancements
|
58
|
+
{: #site-enhancements-v2-1-1}
|
59
|
+
|
60
|
+
- Add vertical margin to `highlight` to separate code blocks ([#2558]({{ site.repository }}/issues/2558))
|
61
|
+
- Add `html_pages` to Variables docs ([#2567]({{ site.repository }}/issues/2567))
|
62
|
+
- Fixed broken link to Permalinks page ([#2572]({{ site.repository }}/issues/2572))
|
63
|
+
- Update link to Windows installation guide ([#2578]({{ site.repository }}/issues/2578))
|
64
|
+
|
65
|
+
|
8
66
|
## 2.1.0 / 2014-06-28
|
67
|
+
{: #v2-1-0}
|
9
68
|
|
10
69
|
### Minor Enhancements
|
70
|
+
{: #minor-enhancements-v2-1-0}
|
11
71
|
|
12
72
|
- Bump to the latest Liquid version, 2.6.1 ([#2495]({{ site.repository }}/issues/2495))
|
13
73
|
- Add support for JSON files in the `_data` directory ([#2369]({{ site.repository }}/issues/2369))
|
@@ -36,6 +96,7 @@ prev_section: contributing
|
|
36
96
|
- Spike out `--watch` flag into a separate gem ([#2550]({{ site.repository }}/issues/2550))
|
37
97
|
|
38
98
|
### Bug Fixes
|
99
|
+
{: #bug-fixes-v2-1-0}
|
39
100
|
|
40
101
|
- Liquid `sort` filter should sort even if one of the values is `nil` ([#2345]({{ site.repository }}/issues/2345))
|
41
102
|
- Remove padding on `pre code` in the site template CSS ([#2383]({{ site.repository }}/issues/2383))
|
@@ -60,6 +121,7 @@ prev_section: contributing
|
|
60
121
|
- Be quiet very quickly. ([#2520]({{ site.repository }}/issues/2520))
|
61
122
|
|
62
123
|
### Development Fixes
|
124
|
+
{: #development-fixes-v2-1-0}
|
63
125
|
|
64
126
|
- Test Ruby 2.1.2 instead of 2.1.1 ([#2374]({{ site.repository }}/issues/2374))
|
65
127
|
- Add test for sorting UTF-8 characters ([#2384]({{ site.repository }}/issues/2384))
|
@@ -68,6 +130,7 @@ prev_section: contributing
|
|
68
130
|
- Fix a bit of missing TomDoc to `Jekyll::Commands::Build#build` ([#2554]({{ site.repository }}/issues/2554))
|
69
131
|
|
70
132
|
### Site Enhancements
|
133
|
+
{: #site-enhancements-v2-1-0}
|
71
134
|
|
72
135
|
- Set `timezone` to `America/Los_Angeles` ([#2394]({{ site.repository }}/issues/2394))
|
73
136
|
- Improve JavaScript in `anchor_links.html` ([#2368]({{ site.repository }}/issues/2368))
|
@@ -91,9 +154,12 @@ prev_section: contributing
|
|
91
154
|
- Remove `url` from configuration docs ([#2547]({{ site.repository }}/issues/2547))
|
92
155
|
- Documentation for Continuous Integration for your Jekyll Site ([#2432]({{ site.repository }}/issues/2432))
|
93
156
|
|
157
|
+
|
94
158
|
## 2.0.3 / 2014-05-08
|
159
|
+
{: #v2-0-3}
|
95
160
|
|
96
161
|
### Bug Fixes
|
162
|
+
{: #bug-fixes-v2-0-3}
|
97
163
|
|
98
164
|
- Properly prefix links in site template with URL or baseurl depending upon
|
99
165
|
need. ([#2319]({{ site.repository }}/issues/2319))
|
@@ -108,6 +174,7 @@ prev_section: contributing
|
|
108
174
|
- Rescue errors thrown so `--watch` doesn't fail ([#2364]({{ site.repository }}/issues/2364))
|
109
175
|
|
110
176
|
### Site Enhancements
|
177
|
+
{: #site-enhancements-v2-0-3}
|
111
178
|
|
112
179
|
- Add missing "as" to assets docs page ([#2337]({{ site.repository }}/issues/2337))
|
113
180
|
- Update docs to reflect new `baseurl` default ([#2341]({{ site.repository }}/issues/2341))
|
@@ -116,27 +183,37 @@ prev_section: contributing
|
|
116
183
|
- Fix link to frontmatter defaults docs ([#2353]({{ site.repository }}/issues/2353))
|
117
184
|
- Fix for `History.markdown` in order to fix history page in docs ([#2363]({{ site.repository }}/issues/2363))
|
118
185
|
|
186
|
+
|
119
187
|
## 2.0.2 / 2014-05-07
|
188
|
+
{: #v2-0-2}
|
120
189
|
|
121
190
|
### Bug Fixes
|
191
|
+
{: #bug-fixes-v2-0-2}
|
122
192
|
|
123
193
|
- Correct use of `url` and `baseurl` in the site template. ([#2317]({{ site.repository }}/issues/2317))
|
124
194
|
- Default `baseurl` to `""` ([#2317]({{ site.repository }}/issues/2317))
|
125
195
|
|
126
196
|
### Site Enhancements
|
197
|
+
{: #site-enhancements-v2-0-2}
|
127
198
|
|
128
199
|
- Correct docs for the `gist` plugin so it always includes the username. ([#2314]({{ site.repository }}/issues/2314))
|
129
200
|
- Clarify new (defaults, `where` filter) features in docs ([#2316]({{ site.repository }}/issues/2316))
|
130
201
|
|
202
|
+
|
131
203
|
## 2.0.1 / 2014-05-06
|
204
|
+
{: #v2-0-1}
|
132
205
|
|
133
206
|
### Bug Fixes
|
207
|
+
{: #bug-fixes-v2-0-1}
|
134
208
|
|
135
209
|
- Require `kramdown` gem instead of `maruku` gem
|
136
210
|
|
211
|
+
|
137
212
|
## 2.0.0 / 2014-05-06
|
213
|
+
{: #v2-0-0}
|
138
214
|
|
139
215
|
### Major Enhancements
|
216
|
+
{: #major-enhancements-v2-0-0}
|
140
217
|
- Add "Collections" feature ([#2199]({{ site.repository }}/issues/2199))
|
141
218
|
- Add gem-based plugin whitelist to safe mode ([#1657]({{ site.repository }}/issues/1657))
|
142
219
|
- Replace the commander command line parser with a more robust
|
@@ -158,6 +235,7 @@ prev_section: contributing
|
|
158
235
|
- Exclude files based on prefix as well as `fnmatch?` ([#2303]({{ site.repository }}/issues/2303))
|
159
236
|
|
160
237
|
### Minor Enhancements
|
238
|
+
{: #minor-enhancements-v2-0-0}
|
161
239
|
- Move the EntryFilter class into the Jekyll module to avoid polluting the
|
162
240
|
global namespace ([#1800]({{ site.repository }}/issues/1800))
|
163
241
|
- Add `group_by` Liquid filter create lists of items grouped by a common
|
@@ -210,6 +288,7 @@ prev_section: contributing
|
|
210
288
|
- Take into account missing values in the Liquid sort filter ([#2299]({{ site.repository }}/issues/2299))
|
211
289
|
|
212
290
|
### Bug Fixes
|
291
|
+
{: #bug-fixes-v2-0-0}
|
213
292
|
- Don't allow nil entries when loading posts ([#1796]({{ site.repository }}/issues/1796))
|
214
293
|
- Remove the scrollbar that's always displayed in new sites generated
|
215
294
|
from the site template ([#1805]({{ site.repository }}/issues/1805))
|
@@ -245,6 +324,7 @@ prev_section: contributing
|
|
245
324
|
- Add `output` to `Document` liquid output hash ([#2309]({{ site.repository }}/issues/2309))
|
246
325
|
|
247
326
|
### Development Fixes
|
327
|
+
{: #development-fixes-v2-0-0}
|
248
328
|
- Add a link to the site in the README.md file ([#1795]({{ site.repository }}/issues/1795))
|
249
329
|
- Add in History and site changes from `v1-stable` branch ([#1836]({{ site.repository }}/issues/1836))
|
250
330
|
- Testing additions on the Excerpt class ([#1893]({{ site.repository }}/issues/1893))
|
@@ -280,6 +360,7 @@ prev_section: contributing
|
|
280
360
|
- Workaround for Travis bug ([#2290]({{ site.repository }}/issues/2290))
|
281
361
|
|
282
362
|
### Site Enhancements
|
363
|
+
{: #site-enhancements-v2-0-0}
|
283
364
|
- Document Kramdown's GFM parser option ([#1791]({{ site.repository }}/issues/1791))
|
284
365
|
- Move CSS to includes & update normalize.css to v2.1.3 ([#1787]({{ site.repository }}/issues/1787))
|
285
366
|
- Minify CSS only in production ([#1803]({{ site.repository }}/issues/1803))
|
@@ -361,84 +442,114 @@ prev_section: contributing
|
|
361
442
|
- Add docs for `where` and `group_by` Liquid filters ([#2298]({{ site.repository }}/issues/2298))
|
362
443
|
- Remove notes in docs for unreleased features ([#2309]({{ site.repository }}/issues/2309))
|
363
444
|
|
445
|
+
|
364
446
|
## 1.5.1 / 2014-03-27
|
447
|
+
{: #v1-5-1}
|
365
448
|
|
366
449
|
### Bug Fixes
|
450
|
+
{: #bug-fixes-v1-5-1}
|
367
451
|
|
368
452
|
- Only strip the drive name if it begins the string ([#2176]({{ site.repository }}/issues/2176))
|
369
453
|
|
454
|
+
|
370
455
|
## 1.5.0 / 2014-03-24
|
456
|
+
{: #v1-5-0}
|
371
457
|
|
372
458
|
### Minor Enhancements
|
459
|
+
{: #minor-enhancements-v1-5-0}
|
373
460
|
|
374
461
|
- Loosen `safe_yaml` dependency to `~> 1.0` ([#2167]({{ site.repository }}/issues/2167))
|
375
462
|
- Bump `safe_yaml` dependency to `~> 1.0.0` ([#1942]({{ site.repository }}/issues/1942))
|
376
463
|
|
377
464
|
### Bug Fixes
|
465
|
+
{: #bug-fixes-v1-5-0}
|
378
466
|
|
379
467
|
- Fix issue where filesystem traversal restriction broke Windows ([#2167]({{ site.repository }}/issues/2167))
|
380
468
|
- Lock `maruku` at `0.7.0` ([#2167]({{ site.repository }}/issues/2167))
|
381
469
|
|
382
470
|
### Development Fixes
|
471
|
+
{: #development-fixes-v1-5-0}
|
383
472
|
|
384
473
|
- Lock `cucumber` at `1.3.11` ([#2167]({{ site.repository }}/issues/2167))
|
385
474
|
|
475
|
+
|
386
476
|
## 1.4.3 / 2014-01-13
|
477
|
+
{: #v1-4-3}
|
387
478
|
|
388
479
|
### Bug Fixes
|
480
|
+
{: #bug-fixes-v1-4-3}
|
389
481
|
- Patch show-stopping security vulnerabilities ([#1944]({{ site.repository }}/issues/1944))
|
390
482
|
|
483
|
+
|
391
484
|
## 1.4.2 / 2013-12-16
|
485
|
+
{: #v1-4-2}
|
392
486
|
|
393
487
|
### Bug Fixes
|
488
|
+
{: #bug-fixes-v1-4-2}
|
394
489
|
- Turn on Maruku fenced code blocks by default ([#1830]({{ site.repository }}/issues/1830))
|
395
490
|
|
491
|
+
|
396
492
|
## 1.4.1 / 2013-12-09
|
493
|
+
{: #v1-4-1}
|
397
494
|
|
398
495
|
### Bug Fixes
|
496
|
+
{: #bug-fixes-v1-4-1}
|
399
497
|
- Don't allow nil entries when loading posts ([#1796]({{ site.repository }}/issues/1796))
|
400
498
|
|
499
|
+
|
401
500
|
## 1.4.0 / 2013-12-07
|
501
|
+
{: #v1-4-0}
|
402
502
|
|
403
503
|
### Major Enhancements
|
504
|
+
{: #major-enhancements-v1-4-0}
|
404
505
|
- Add support for TOML config files ([#1765]({{ site.repository }}/issues/1765))
|
405
506
|
|
406
507
|
### Minor Enhancements
|
508
|
+
{: #minor-enhancements-v1-4-0}
|
407
509
|
- Sort plugins as a way to establish a load order ([#1682]({{ site.repository }}/issues/1682))
|
408
510
|
- Update Maruku to 0.7.0 ([#1775]({{ site.repository }}/issues/1775))
|
409
511
|
|
410
512
|
### Bug Fixes
|
513
|
+
{: #bug-fixes-v1-4-0}
|
411
514
|
- Add a space between two words in a Pagination warning message ([#1769]({{ site.repository }}/issues/1769))
|
412
515
|
- Upgrade `toml` gem to `v0.1.0` to maintain compat with Ruby 1.8.7 ([#1778]({{ site.repository }}/issues/1778))
|
413
516
|
|
414
517
|
### Development Fixes
|
518
|
+
{: #development-fixes-v1-4-0}
|
415
519
|
- Remove some whitespace in the code ([#1755]({{ site.repository }}/issues/1755))
|
416
520
|
- Remove some duplication in the reading of posts and drafts ([#1779]({{ site.repository }}/issues/1779))
|
417
521
|
|
418
522
|
### Site Enhancements
|
523
|
+
{: #site-enhancements-v1-4-0}
|
419
524
|
- Fixed case of a word in the Jekyll v1.3.0 release post ([#1762]({{ site.repository }}/issues/1762))
|
420
525
|
- Fixed the mime type for the favicon ([#1772]({{ site.repository }}/issues/1772))
|
421
526
|
|
527
|
+
|
422
528
|
## 1.3.1 / 2013-11-26
|
529
|
+
{: #v1-3-1}
|
423
530
|
|
424
531
|
### Minor Enhancements
|
532
|
+
{: #minor-enhancements-v1-3-1}
|
425
533
|
- Add a `--prefix` option to passthrough for the importers ([#1669]({{ site.repository }}/issues/1669))
|
426
534
|
- Push the paginator plugin lower in the plugin priority order so
|
427
535
|
other plugins run before it ([#1759]({{ site.repository }}/issues/1759))
|
428
536
|
|
429
537
|
### Bug Fixes
|
538
|
+
{: #bug-fixes-v1-3-1}
|
430
539
|
- Fix the include tag when ran in a loop ([#1726]({{ site.repository }}/issues/1726))
|
431
540
|
- Fix errors when using `--watch` on 1.8.7 ([#1730]({{ site.repository }}/issues/1730))
|
432
541
|
- Specify where the include is called from if an included file is
|
433
542
|
missing ([#1746]({{ site.repository }}/issues/1746))
|
434
543
|
|
435
544
|
### Development Fixes
|
545
|
+
{: #development-fixes-v1-3-1}
|
436
546
|
- Extract `Site#filter_entries` into its own object ([#1697]({{ site.repository }}/issues/1697))
|
437
547
|
- Enable Travis' bundle caching ([#1734]({{ site.repository }}/issues/1734))
|
438
548
|
- Remove trailing whitespace in some files ([#1736]({{ site.repository }}/issues/1736))
|
439
549
|
- Fix a duplicate test name ([#1754]({{ site.repository }}/issues/1754))
|
440
550
|
|
441
551
|
### Site Enhancements
|
552
|
+
{: #site-enhancements-v1-3-1}
|
442
553
|
- Update link to example Rakefile to point to specific commit ([#1741]({{ site.repository }}/issues/1741))
|
443
554
|
- Fix drafts docs to indicate that draft time is based on file modification
|
444
555
|
time, not `Time.now` ([#1695]({{ site.repository }}/issues/1695))
|
@@ -452,15 +563,19 @@ prev_section: contributing
|
|
452
563
|
- Add docs for `post_url` when posts are in subdirectories ([#1718]({{ site.repository }}/issues/1718))
|
453
564
|
- Update the docs to point to `example.com` ([#1448]({{ site.repository }}/issues/1448))
|
454
565
|
|
566
|
+
|
455
567
|
## 1.3.0 / 2013-11-04
|
568
|
+
{: #v1-3-0}
|
456
569
|
|
457
570
|
### Major Enhancements
|
571
|
+
{: #major-enhancements-v1-3-0}
|
458
572
|
- Add support for adding data as YAML files under a site's `_data`
|
459
573
|
directory ([#1003]({{ site.repository }}/issues/1003))
|
460
574
|
- Allow variables to be used with `include` tags ([#1495]({{ site.repository }}/issues/1495))
|
461
575
|
- Allow using gems for plugin management ([#1557]({{ site.repository }}/issues/1557))
|
462
576
|
|
463
577
|
### Minor Enhancements
|
578
|
+
{: #minor-enhancements-v1-3-0}
|
464
579
|
- Decrease the specificity in the site template CSS ([#1574]({{ site.repository }}/issues/1574))
|
465
580
|
- Add `encoding` configuration option ([#1449]({{ site.repository }}/issues/1449))
|
466
581
|
- Provide better error handling for Jekyll's custom Liquid tags
|
@@ -478,6 +593,7 @@ prev_section: contributing
|
|
478
593
|
missing ([#1662]({{ site.repository }}/issues/1662))
|
479
594
|
|
480
595
|
### Bug Fixes
|
596
|
+
{: #bug-fixes-v1-3-0}
|
481
597
|
- Fix up matching against source and destination when the two
|
482
598
|
locations are similar ([#1556]({{ site.repository }}/issues/1556))
|
483
599
|
- Fix the missing `pathname` require in certain cases ([#1255]({{ site.repository }}/issues/1255))
|
@@ -493,6 +609,7 @@ prev_section: contributing
|
|
493
609
|
incompatibilities ([#1687]({{ site.repository }}/issues/1687))
|
494
610
|
|
495
611
|
### Development Fixes
|
612
|
+
{: #development-fixes-v1-3-0}
|
496
613
|
- Add coverage reporting with Coveralls ([#1539]({{ site.repository }}/issues/1539))
|
497
614
|
- Refactor the Liquid `include` tag ([#1490]({{ site.repository }}/issues/1490))
|
498
615
|
- Update launchy dependency to `~> 2.3` ([#1608]({{ site.repository }}/issues/1608))
|
@@ -509,6 +626,7 @@ prev_section: contributing
|
|
509
626
|
- Improve comparisons of timestamps by ignoring the seconds ([#1582]({{ site.repository }}/issues/1582))
|
510
627
|
|
511
628
|
### Site Enhancements
|
629
|
+
{: #site-enhancements-v1-3-0}
|
512
630
|
- Fix params for `JekyllImport::WordPress.process` arguments ([#1554]({{ site.repository }}/issues/1554))
|
513
631
|
- Add `jekyll-suggested-tweet` to list of third-party plugins ([#1555]({{ site.repository }}/issues/1555))
|
514
632
|
- Link to Liquid's docs for tags and filters ([#1553]({{ site.repository }}/issues/1553))
|
@@ -526,37 +644,47 @@ prev_section: contributing
|
|
526
644
|
- Fix navigation in the "Working with Drafts" page ([#1667]({{ site.repository }}/issues/1667))
|
527
645
|
- Fix an error with the data documentation ([#1691]({{ site.repository }}/issues/1691))
|
528
646
|
|
647
|
+
|
529
648
|
## 1.2.1 / 2013-09-14
|
649
|
+
{: #v1-2-1}
|
530
650
|
|
531
651
|
### Minor Enhancements
|
652
|
+
{: #minor-enhancements-v1-2-1}
|
532
653
|
- Print better messages for detached server. Mute output on detach. ([#1518]({{ site.repository }}/issues/1518))
|
533
654
|
- Disable reverse lookup when running `jekyll serve` ([#1363]({{ site.repository }}/issues/1363))
|
534
655
|
- Upgrade RedCarpet dependency to `~> 2.3.0` ([#1515]({{ site.repository }}/issues/1515))
|
535
656
|
- Upgrade to Liquid `>= 2.5.2, < 2.6` ([#1536]({{ site.repository }}/issues/1536))
|
536
657
|
|
537
658
|
### Bug Fixes
|
659
|
+
{: #bug-fixes-v1-2-1}
|
538
660
|
- Fix file discrepancy in gemspec ([#1522]({{ site.repository }}/issues/1522))
|
539
661
|
- Force rendering of Include tag ([#1525]({{ site.repository }}/issues/1525))
|
540
662
|
|
541
663
|
### Development Fixes
|
664
|
+
{: #development-fixes-v1-2-1}
|
542
665
|
- Add a rake task to generate a new release post ([#1404]({{ site.repository }}/issues/1404))
|
543
666
|
- Mute LSI output in tests ([#1531]({{ site.repository }}/issues/1531))
|
544
667
|
- Update contributor documentation ([#1537]({{ site.repository }}/issues/1537))
|
545
668
|
|
546
669
|
### Site Enhancements
|
670
|
+
{: #site-enhancements-v1-2-1}
|
547
671
|
- Fix a couple of validation errors on the site ([#1511]({{ site.repository }}/issues/1511))
|
548
672
|
- Make navigation menus reusable ([#1507]({{ site.repository }}/issues/1507))
|
549
673
|
- Fix link to History page from Release v1.2.0 notes post.
|
550
674
|
- Fix markup in History file for command line options ([#1512]({{ site.repository }}/issues/1512))
|
551
675
|
- Expand 1.2 release post title to 1.2.0 ([#1516]({{ site.repository }}/issues/1516))
|
552
676
|
|
677
|
+
|
553
678
|
## 1.2.0 / 2013-09-06
|
679
|
+
{: #v1-2-0}
|
554
680
|
|
555
681
|
### Major Enhancements
|
682
|
+
{: #major-enhancements-v1-2-0}
|
556
683
|
- Disable automatically-generated excerpts when `excerpt_separator` is `""`. ([#1386]({{ site.repository }}/issues/1386))
|
557
684
|
- Add checking for URL conflicts when running `jekyll doctor` ([#1389]({{ site.repository }}/issues/1389))
|
558
685
|
|
559
686
|
### Minor Enhancements
|
687
|
+
{: #minor-enhancements-v1-2-0}
|
560
688
|
- Catch and fix invalid `paginate` values ([#1390]({{ site.repository }}/issues/1390))
|
561
689
|
- Remove superfluous `div.container` from the default html template for
|
562
690
|
`jekyll new` ([#1315]({{ site.repository }}/issues/1315))
|
@@ -572,6 +700,7 @@ prev_section: contributing
|
|
572
700
|
`jekyll.version` variable ([#1481]({{ site.repository }}/issues/1481))
|
573
701
|
|
574
702
|
### Bug Fixes
|
703
|
+
{: #bug-fixes-v1-2-0}
|
575
704
|
- Markdown extension matching matches only exact matches ([#1382]({{ site.repository }}/issues/1382))
|
576
705
|
- Fixed NoMethodError when message passed to `Stevenson#message` is nil ([#1388]({{ site.repository }}/issues/1388))
|
577
706
|
- Use binary mode when writing file ([#1364]({{ site.repository }}/issues/1364))
|
@@ -587,6 +716,7 @@ prev_section: contributing
|
|
587
716
|
tag ([#1494]({{ site.repository }}/issues/1494))
|
588
717
|
|
589
718
|
### Development Fixes
|
719
|
+
{: #development-fixes-v1-2-0}
|
590
720
|
- Remove redundant argument to
|
591
721
|
Jekyll::Commands::New#scaffold_post_content ([#1356]({{ site.repository }}/issues/1356))
|
592
722
|
- Add new dependencies to the README ([#1360]({{ site.repository }}/issues/1360))
|
@@ -598,6 +728,7 @@ prev_section: contributing
|
|
598
728
|
- Add Gem version and dependency badge to README ([#1497]({{ site.repository }}/issues/1497))
|
599
729
|
|
600
730
|
### Site Enhancements
|
731
|
+
{: #site-enhancements-v1-2-0}
|
601
732
|
- Add info about new releases ([#1353]({{ site.repository }}/issues/1353))
|
602
733
|
- Update plugin list with jekyll-rss plugin ([#1354]({{ site.repository }}/issues/1354))
|
603
734
|
- Update the site list page with Ruby's official site ([#1358]({{ site.repository }}/issues/1358))
|
@@ -619,21 +750,29 @@ prev_section: contributing
|
|
619
750
|
- XML escape the blog post title in our feed ([#1501]({{ site.repository }}/issues/1501))
|
620
751
|
- Add `jekyll-toc-generator` to list of third-party plugins ([#1506]({{ site.repository }}/issues/1506))
|
621
752
|
|
753
|
+
|
622
754
|
## 1.1.2 / 2013-07-25
|
755
|
+
{: #v1-1-2}
|
623
756
|
|
624
757
|
### Bug Fixes
|
758
|
+
{: #bug-fixes-v1-1-2}
|
625
759
|
- Require Liquid 2.5.1 ([#1349]({{ site.repository }}/issues/1349))
|
626
760
|
|
761
|
+
|
627
762
|
## 1.1.1 / 2013-07-24
|
763
|
+
{: #v1-1-1}
|
628
764
|
|
629
765
|
### Minor Enhancements
|
766
|
+
{: #minor-enhancements-v1-1-1}
|
630
767
|
- Remove superfluous `table` selector from main.css in `jekyll new` template ([#1328]({{ site.repository }}/issues/1328))
|
631
768
|
- Abort with non-zero exit codes ([#1338]({{ site.repository }}/issues/1338))
|
632
769
|
|
633
770
|
### Bug Fixes
|
771
|
+
{: #bug-fixes-v1-1-1}
|
634
772
|
- Fix up the rendering of excerpts ([#1339]({{ site.repository }}/issues/1339))
|
635
773
|
|
636
774
|
### Site Enhancements
|
775
|
+
{: #site-enhancements-v1-1-1}
|
637
776
|
- Add Jekyll Image Tag to the plugins list ([#1306]({{ site.repository }}/issues/1306))
|
638
777
|
- Remove erroneous statement that `site.pages` are sorted alphabetically.
|
639
778
|
- Add info about the `_drafts` directory to the directory structure
|
@@ -647,14 +786,18 @@ prev_section: contributing
|
|
647
786
|
will automatically convert them. ([#1303]({{ site.repository }}/issues/1303))
|
648
787
|
- Add an RSS feed for commits to Jekyll ([#1343]({{ site.repository }}/issues/1343))
|
649
788
|
|
789
|
+
|
650
790
|
## 1.1.0 / 2013-07-14
|
791
|
+
{: #v1-1-0}
|
651
792
|
|
652
793
|
### Major Enhancements
|
794
|
+
{: #major-enhancements-v1-1-0}
|
653
795
|
- Add `docs` subcommand to read Jekyll's docs when offline. ([#1046]({{ site.repository }}/issues/1046))
|
654
796
|
- Support passing parameters to templates in `include` tag ([#1204]({{ site.repository }}/issues/1204))
|
655
797
|
- Add support for Liquid tags to post excerpts ([#1302]({{ site.repository }}/issues/1302))
|
656
798
|
|
657
799
|
### Minor Enhancements
|
800
|
+
{: #minor-enhancements-v1-1-0}
|
658
801
|
- Search the hierarchy of pagination path up to site root to determine template page for
|
659
802
|
pagination. ([#1198]({{ site.repository }}/issues/1198))
|
660
803
|
- Add the ability to generate a new Jekyll site without a template ([#1171]({{ site.repository }}/issues/1171))
|
@@ -668,6 +811,7 @@ prev_section: contributing
|
|
668
811
|
- Allow for all options for Kramdown HTML Converter ([#1201]({{ site.repository }}/issues/1201))
|
669
812
|
|
670
813
|
### Bug Fixes
|
814
|
+
{: #bug-fixes-v1-1-0}
|
671
815
|
- Fix pagination in subdirectories. ([#1198]({{ site.repository }}/issues/1198))
|
672
816
|
- Fix an issue with directories and permalinks that have a plus sign
|
673
817
|
(+) in them ([#1215]({{ site.repository }}/issues/1215))
|
@@ -675,6 +819,7 @@ prev_section: contributing
|
|
675
819
|
- Latest posts first in non-LSI `related_posts` ([#1271]({{ site.repository }}/issues/1271))
|
676
820
|
|
677
821
|
### Development Fixes
|
822
|
+
{: #development-fixes-v1-1-0}
|
678
823
|
- Merge the theme and layout Cucumber steps into one step ([#1151]({{ site.repository }}/issues/1151))
|
679
824
|
- Restrict activesupport dependency to pre-4.0.0 to maintain compatibility with `<= 1.9.2`
|
680
825
|
- Include/exclude deprecation handling simplification ([#1284]({{ site.repository }}/issues/1284))
|
@@ -682,6 +827,7 @@ prev_section: contributing
|
|
682
827
|
- Refactor Jekyll::Site ([#1144]({{ site.repository }}/issues/1144))
|
683
828
|
|
684
829
|
### Site Enhancements
|
830
|
+
{: #site-enhancements-v1-1-0}
|
685
831
|
- Add "News" section for release notes, along with an RSS feed ([#1093]({{ site.repository }}/issues/1093), [#1285]({{ site.repository }}/issues/1285), [#1286]({{ site.repository }}/issues/1286))
|
686
832
|
- Add "History" page.
|
687
833
|
- Restructured docs sections to include "Meta" section.
|
@@ -719,9 +865,12 @@ prev_section: contributing
|
|
719
865
|
- Add information about time zones to the documentation for a page's
|
720
866
|
date ([#1304]({{ site.repository }}/issues/1304))
|
721
867
|
|
868
|
+
|
722
869
|
## 1.0.3 / 2013-06-07
|
870
|
+
{: #v1-0-3}
|
723
871
|
|
724
872
|
### Minor Enhancements
|
873
|
+
{: #minor-enhancements-v1-0-3}
|
725
874
|
- Add support to gist tag for private gists. ([#1189]({{ site.repository }}/issues/1189))
|
726
875
|
- Fail loudly when Maruku errors out ([#1190]({{ site.repository }}/issues/1190))
|
727
876
|
- Move the building of related posts into their own class ([#1057]({{ site.repository }}/issues/1057))
|
@@ -730,6 +879,7 @@ prev_section: contributing
|
|
730
879
|
- Convert IDs in the site template to classes ([#1170]({{ site.repository }}/issues/1170))
|
731
880
|
|
732
881
|
### Bug Fixes
|
882
|
+
{: #bug-fixes-v1-0-3}
|
733
883
|
- Fix typo in Stevenson constant "ERROR". ([#1166]({{ site.repository }}/issues/1166))
|
734
884
|
- Rename Jekyll::Logger to Jekyll::Stevenson to fix inheritance issue ([#1106]({{ site.repository }}/issues/1106))
|
735
885
|
- Exit with a non-zero exit code when dealing with a Liquid error ([#1121]({{ site.repository }}/issues/1121))
|
@@ -740,6 +890,7 @@ prev_section: contributing
|
|
740
890
|
([#1156]({{ site.repository }}/issues/1156))
|
741
891
|
|
742
892
|
### Site Enhancements
|
893
|
+
{: #site-enhancements-v1-0-3}
|
743
894
|
- Add a Pro Tip to docs about front matter variables being optional ([#1147]({{ site.repository }}/issues/1147))
|
744
895
|
- Add changelog to site as History page in /docs/ ([#1065]({{ site.repository }}/issues/1065))
|
745
896
|
- Add note to Upgrading page about new config options in 1.0.x ([#1146]({{ site.repository }}/issues/1146))
|
@@ -759,59 +910,75 @@ prev_section: contributing
|
|
759
910
|
- Add the Jekyll Gallery Plugin to the plugin list ([#1143]({{ site.repository }}/issues/1143))
|
760
911
|
|
761
912
|
### Development Fixes
|
913
|
+
{: #development-fixes-v1-0-3}
|
762
914
|
- Use Jekyll.logger instead of Jekyll::Stevenson to log things ([#1149]({{ site.repository }}/issues/1149))
|
763
915
|
- Fix pesky Cucumber infinite loop ([#1139]({{ site.repository }}/issues/1139))
|
764
916
|
- Do not write posts with timezones in Cucumber tests ([#1124]({{ site.repository }}/issues/1124))
|
765
917
|
- Use ISO formatted dates in Cucumber features ([#1150]({{ site.repository }}/issues/1150))
|
766
918
|
|
919
|
+
|
767
920
|
## 1.0.2 / 2013-05-12
|
921
|
+
{: #v1-0-2}
|
768
922
|
|
769
923
|
### Major Enhancements
|
924
|
+
{: #major-enhancements-v1-0-2}
|
770
925
|
- Add `jekyll doctor` command to check site for any known compatibility problems ([#1081]({{ site.repository }}/issues/1081))
|
771
926
|
- Backwards-compatibilize relative permalinks ([#1081]({{ site.repository }}/issues/1081))
|
772
927
|
|
773
928
|
### Minor Enhancements
|
929
|
+
{: #minor-enhancements-v1-0-2}
|
774
930
|
- Add a `data-lang="<lang>"` attribute to Redcarpet code blocks ([#1066]({{ site.repository }}/issues/1066))
|
775
931
|
- Deprecate old config `server_port`, match to `port` if `port` isn't set ([#1084]({{ site.repository }}/issues/1084))
|
776
932
|
- Update pygments.rb version to 0.5.0 ([#1061]({{ site.repository }}/issues/1061))
|
777
933
|
- Update Kramdown version to 1.0.2 ([#1067]({{ site.repository }}/issues/1067))
|
778
934
|
|
779
935
|
### Bug Fixes
|
936
|
+
{: #bug-fixes-v1-0-2}
|
780
937
|
- Fix issue when categories are numbers ([#1078]({{ site.repository }}/issues/1078))
|
781
938
|
- Catching that Redcarpet gem isn't installed ([#1059]({{ site.repository }}/issues/1059))
|
782
939
|
|
783
940
|
### Site Enhancements
|
941
|
+
{: #site-enhancements-v1-0-2}
|
784
942
|
- Add documentation about `relative_permalinks` ([#1081]({{ site.repository }}/issues/1081))
|
785
943
|
- Remove pygments-installation instructions, as pygments.rb is bundled with it ([#1079]({{ site.repository }}/issues/1079))
|
786
944
|
- Move pages to be Pages for realz ([#985]({{ site.repository }}/issues/985))
|
787
945
|
- Updated links to Liquid documentation ([#1073]({{ site.repository }}/issues/1073))
|
788
946
|
|
947
|
+
|
789
948
|
## 1.0.1 / 2013-05-08
|
949
|
+
{: #v1-0-1}
|
790
950
|
|
791
951
|
### Minor Enhancements
|
952
|
+
{: #minor-enhancements-v1-0-1}
|
792
953
|
- Do not force use of `toc_token` when using `generate_tok` in RDiscount ([#1048]({{ site.repository }}/issues/1048))
|
793
954
|
- Add newer `language-` class name prefix to code blocks ([#1037]({{ site.repository }}/issues/1037))
|
794
955
|
- Commander error message now preferred over process abort with incorrect args ([#1040]({{ site.repository }}/issues/1040))
|
795
956
|
|
796
957
|
### Bug Fixes
|
958
|
+
{: #bug-fixes-v1-0-1}
|
797
959
|
- Make Redcarpet respect the pygments configuration option ([#1053]({{ site.repository }}/issues/1053))
|
798
960
|
- Fix the index build with LSI ([#1045]({{ site.repository }}/issues/1045))
|
799
961
|
- Don't print deprecation warning when no arguments are specified. ([#1041]({{ site.repository }}/issues/1041))
|
800
962
|
- Add missing `</div>` to site template used by `new` subcommand, fixed typos in code ([#1032]({{ site.repository }}/issues/1032))
|
801
963
|
|
802
964
|
### Site Enhancements
|
965
|
+
{: #site-enhancements-v1-0-1}
|
803
966
|
- Changed https to http in the GitHub Pages link ([#1051]({{ site.repository }}/issues/1051))
|
804
967
|
- Remove CSS cruft, fix typos, fix HTML errors ([#1028]({{ site.repository }}/issues/1028))
|
805
968
|
- Removing manual install of Pip and Distribute ([#1025]({{ site.repository }}/issues/1025))
|
806
969
|
- Updated URL for Markdown references plugin ([#1022]({{ site.repository }}/issues/1022))
|
807
970
|
|
808
971
|
### Development Fixes
|
972
|
+
{: #development-fixes-v1-0-1}
|
809
973
|
- Markdownify history file ([#1027]({{ site.repository }}/issues/1027))
|
810
974
|
- Update links on README to point to new jekyllrb.com ([#1018]({{ site.repository }}/issues/1018))
|
811
975
|
|
976
|
+
|
812
977
|
## 1.0.0 / 2013-05-06
|
978
|
+
{: #v1-0-0}
|
813
979
|
|
814
980
|
### Major Enhancements
|
981
|
+
{: #major-enhancements-v1-0-0}
|
815
982
|
- Add `jekyll new` subcommand: generate a Jekyll scaffold ([#764]({{ site.repository }}/issues/764))
|
816
983
|
- Refactored Jekyll commands into subcommands: build, serve, and migrate. ([#690]({{ site.repository }}/issues/690))
|
817
984
|
- Removed importers/migrators from main project, migrated to jekyll-import sub-gem ([#793]({{ site.repository }}/issues/793))
|
@@ -819,6 +986,7 @@ prev_section: contributing
|
|
819
986
|
- Add ordinal date permalink style (/:categories/:year/:y_day/:title.html) ([#928]({{ site.repository }}/issues/928))
|
820
987
|
|
821
988
|
### Minor Enhancements
|
989
|
+
{: #minor-enhancements-v1-0-0}
|
822
990
|
- Site template HTML5-ified ([#964]({{ site.repository }}/issues/964))
|
823
991
|
- Use post's directory path when matching for the `post_url` tag ([#998]({{ site.repository }}/issues/998))
|
824
992
|
- Loosen dependency on Pygments so it's only required when it's needed ([#1015]({{ site.repository }}/issues/1015))
|
@@ -893,6 +1061,7 @@ prev_section: contributing
|
|
893
1061
|
- Prevent custom destination from causing continuous regen on watch ([#528]({{ site.repository }}/issues/528), [#820]({{ site.repository }}/issues/820), [#862]({{ site.repository }}/issues/862))
|
894
1062
|
|
895
1063
|
### Site Enhancements
|
1064
|
+
{: #site-enhancements-v1-0-0}
|
896
1065
|
- Responsify ([#860]({{ site.repository }}/issues/860))
|
897
1066
|
- Fix spelling, punctuation and phrasal errors ([#989]({{ site.repository }}/issues/989))
|
898
1067
|
- Update quickstart instructions with `new` command ([#966]({{ site.repository }}/issues/966))
|
@@ -903,6 +1072,7 @@ prev_section: contributing
|
|
903
1072
|
- Redesigned site ([#583]({{ site.repository }}/issues/583))
|
904
1073
|
|
905
1074
|
### Development Fixes
|
1075
|
+
{: #development-fixes-v1-0-0}
|
906
1076
|
- Exclude Cucumber 1.2.4, which causes tests to fail in 1.9.2 ([#938]({{ site.repository }}/issues/938))
|
907
1077
|
- Added "features:html" rake task for debugging purposes, cleaned up
|
908
1078
|
Cucumber profiles ([#832]({{ site.repository }}/issues/832))
|
@@ -914,18 +1084,24 @@ prev_section: contributing
|
|
914
1084
|
of greater than 1.9 ([#771]({{ site.repository }}/issues/771))
|
915
1085
|
- Switch to Simplecov for coverage report ([#765]({{ site.repository }}/issues/765))
|
916
1086
|
|
1087
|
+
|
917
1088
|
## 0.12.1 / 2013-02-19
|
1089
|
+
{: #v0-12-1}
|
918
1090
|
|
919
1091
|
### Minor Enhancements
|
1092
|
+
{: #minor-enhancements-v0-12-1}
|
920
1093
|
- Update Kramdown version to 0.14.1 ([#744]({{ site.repository }}/issues/744))
|
921
1094
|
- Test Enhancements
|
922
1095
|
- Update Rake version to 10.0.3 ([#744]({{ site.repository }}/issues/744))
|
923
1096
|
- Update Shoulda version to 3.3.2 ([#744]({{ site.repository }}/issues/744))
|
924
1097
|
- Update Redcarpet version to 2.2.2 ([#744]({{ site.repository }}/issues/744))
|
925
1098
|
|
1099
|
+
|
926
1100
|
## 0.12.0 / 2012-12-22
|
1101
|
+
{: #v0-12-0}
|
927
1102
|
|
928
1103
|
### Minor Enhancements
|
1104
|
+
{: #minor-enhancements-v0-12-0}
|
929
1105
|
- Add ability to explicitly specify included files ([#261]({{ site.repository }}/issues/261))
|
930
1106
|
- Add `--default-mimetype` option ([#279]({{ site.repository }}/issues/279))
|
931
1107
|
- Allow setting of RedCloth options ([#284]({{ site.repository }}/issues/284))
|
@@ -944,24 +1120,32 @@ prev_section: contributing
|
|
944
1120
|
- Allow setting of Kramdown `smart_quotes` ([#482]({{ site.repository }}/issues/482))
|
945
1121
|
- Ensure front-matter is at start of file ([#562]({{ site.repository }}/issues/562))
|
946
1122
|
|
1123
|
+
|
947
1124
|
## 0.11.2 / 2011-12-27
|
1125
|
+
{: #v0-11-2}
|
948
1126
|
- Bug Fixes
|
949
1127
|
- Fix gemspec
|
950
1128
|
|
1129
|
+
|
951
1130
|
## 0.11.1 / 2011-12-27
|
1131
|
+
{: #v0-11-1}
|
952
1132
|
- Bug Fixes
|
953
1133
|
- Fix extra blank line in highlight blocks ([#409]({{ site.repository }}/issues/409))
|
954
1134
|
- Update dependencies
|
955
1135
|
|
1136
|
+
|
956
1137
|
## 0.11.0 / 2011-07-10
|
1138
|
+
{: #v0-11-0}
|
957
1139
|
|
958
1140
|
### Major Enhancements
|
1141
|
+
{: #major-enhancements-v0-11-0}
|
959
1142
|
- Add command line importer functionality ([#253]({{ site.repository }}/issues/253))
|
960
1143
|
- Add Redcarpet Markdown support ([#318]({{ site.repository }}/issues/318))
|
961
1144
|
- Make markdown/textile extensions configurable ([#312]({{ site.repository }}/issues/312))
|
962
1145
|
- Add `markdownify` filter
|
963
1146
|
|
964
1147
|
### Minor Enhancements
|
1148
|
+
{: #minor-enhancements-v0-11-0}
|
965
1149
|
- Switch to Albino gem
|
966
1150
|
- Bundler support
|
967
1151
|
- Use English library to avoid hoops ([#292]({{ site.repository }}/issues/292))
|
@@ -974,22 +1158,30 @@ prev_section: contributing
|
|
974
1158
|
- Bug Fixes
|
975
1159
|
- Secure additional path exploits
|
976
1160
|
|
1161
|
+
|
977
1162
|
## 0.10.0 / 2010-12-16
|
1163
|
+
{: #v0-10-0}
|
978
1164
|
- Bug Fixes
|
979
1165
|
- Add `--no-server` option.
|
980
1166
|
|
1167
|
+
|
981
1168
|
## 0.9.0 / 2010-12-15
|
1169
|
+
{: #v0-9-0}
|
982
1170
|
|
983
1171
|
### Minor Enhancements
|
1172
|
+
{: #minor-enhancements-v0-9-0}
|
984
1173
|
- Use OptionParser's `[no-]` functionality for better boolean parsing.
|
985
1174
|
- Add Drupal migrator ([#245]({{ site.repository }}/issues/245))
|
986
1175
|
- Complain about YAML and Liquid errors ([#249]({{ site.repository }}/issues/249))
|
987
1176
|
- Remove orphaned files during regeneration ([#247]({{ site.repository }}/issues/247))
|
988
1177
|
- Add Marley migrator ([#28]({{ site.repository }}/issues/28))
|
989
1178
|
|
1179
|
+
|
990
1180
|
## 0.8.0 / 2010-11-22
|
1181
|
+
{: #v0-8-0}
|
991
1182
|
|
992
1183
|
### Minor Enhancements
|
1184
|
+
{: #minor-enhancements-v0-8-0}
|
993
1185
|
- Add wordpress.com importer ([#207]({{ site.repository }}/issues/207))
|
994
1186
|
- Add `--limit-posts` cli option ([#212]({{ site.repository }}/issues/212))
|
995
1187
|
- Add `uri_escape` filter ([#234]({{ site.repository }}/issues/234))
|
@@ -1001,28 +1193,38 @@ prev_section: contributing
|
|
1001
1193
|
- Set mode to UTF8 on Sequel connections ([#237]({{ site.repository }}/issues/237))
|
1002
1194
|
- Prevent `_includes` dir from being a symlink
|
1003
1195
|
|
1196
|
+
|
1004
1197
|
## 0.7.0 / 2010-08-24
|
1198
|
+
{: #v0-7-0}
|
1005
1199
|
|
1006
1200
|
### Minor Enhancements
|
1201
|
+
{: #minor-enhancements-v0-7-0}
|
1007
1202
|
- Add support for rdiscount extensions ([#173]({{ site.repository }}/issues/173))
|
1008
1203
|
- Bug Fixes
|
1009
1204
|
- Highlight should not be able to render local files
|
1010
1205
|
- The site configuration may not always provide a 'time' setting ([#184]({{ site.repository }}/issues/184))
|
1011
1206
|
|
1207
|
+
|
1012
1208
|
## 0.6.2 / 2010-06-25
|
1209
|
+
{: #v0-6-2}
|
1013
1210
|
- Bug Fixes
|
1014
1211
|
- Fix Rakefile 'release' task (tag pushing was missing origin)
|
1015
1212
|
- Ensure that RedCloth is loaded when textilize filter is used ([#183]({{ site.repository }}/issues/183))
|
1016
1213
|
- Expand source, destination, and plugin paths ([#180]({{ site.repository }}/issues/180))
|
1017
1214
|
- Fix `page.url` to include full relative path ([#181]({{ site.repository }}/issues/181))
|
1018
1215
|
|
1216
|
+
|
1019
1217
|
## 0.6.1 / 2010-06-24
|
1218
|
+
{: #v0-6-1}
|
1020
1219
|
- Bug Fixes
|
1021
1220
|
- Fix Markdown Pygments prefix and suffix ([#178]({{ site.repository }}/issues/178))
|
1022
1221
|
|
1222
|
+
|
1023
1223
|
## 0.6.0 / 2010-06-23
|
1224
|
+
{: #v0-6-0}
|
1024
1225
|
|
1025
1226
|
### Major Enhancements
|
1227
|
+
{: #major-enhancements-v0-6-0}
|
1026
1228
|
- Proper plugin system ([#19]({{ site.repository }}/issues/19), [#100]({{ site.repository }}/issues/100))
|
1027
1229
|
- Add safe mode so unsafe converters/generators can be added
|
1028
1230
|
- Maruku is now the only processor dependency installed by default.
|
@@ -1030,6 +1232,7 @@ prev_section: contributing
|
|
1030
1232
|
user to install them when necessary) ([#57]({{ site.repository }}/issues/57))
|
1031
1233
|
|
1032
1234
|
### Minor Enhancements
|
1235
|
+
{: #minor-enhancements-v0-6-0}
|
1033
1236
|
- Inclusion/exclusion of future dated posts ([#59]({{ site.repository }}/issues/59))
|
1034
1237
|
- Generation for a specific time ([#59]({{ site.repository }}/issues/59))
|
1035
1238
|
- Allocate `site.time` on render not per site_payload invocation ([#59]({{ site.repository }}/issues/59))
|
@@ -1048,9 +1251,12 @@ prev_section: contributing
|
|
1048
1251
|
- Preserve generated attributes over front matter ([#119]({{ site.repository }}/issues/119))
|
1049
1252
|
- Fix source directory binding using `Dir.pwd` ([#75]({{ site.repository }}/issues/75))
|
1050
1253
|
|
1254
|
+
|
1051
1255
|
## 0.5.7 / 2010-01-12
|
1256
|
+
{: #v0-5-7}
|
1052
1257
|
|
1053
1258
|
### Minor Enhancements
|
1259
|
+
{: #minor-enhancements-v0-5-7}
|
1054
1260
|
- Allow overriding of post date in the front matter ([#62]({{ site.repository }}/issues/62), [#38]({{ site.repository }}/issues/38))
|
1055
1261
|
- Bug Fixes
|
1056
1262
|
- Categories isn't always an array ([#73]({{ site.repository }}/issues/73))
|
@@ -1060,36 +1266,48 @@ prev_section: contributing
|
|
1060
1266
|
- Cucumber features no longer use site.posts.first where a better
|
1061
1267
|
alternative is available
|
1062
1268
|
|
1269
|
+
|
1063
1270
|
## 0.5.6 / 2010-01-08
|
1271
|
+
{: #v0-5-6}
|
1064
1272
|
- Bug Fixes
|
1065
1273
|
- Require redcloth >= 4.2.1 in tests ([#92]({{ site.repository }}/issues/92))
|
1066
1274
|
- Don't break on triple dashes in yaml frontmatter ([#93]({{ site.repository }}/issues/93))
|
1067
1275
|
|
1068
1276
|
### Minor Enhancements
|
1277
|
+
{: #minor-enhancements-v0-5-6}
|
1069
1278
|
- Allow .mkd as markdown extension
|
1070
1279
|
- Use $stdout/err instead of constants ([#99]({{ site.repository }}/issues/99))
|
1071
1280
|
- Properly wrap code blocks ([#91]({{ site.repository }}/issues/91))
|
1072
1281
|
- Add javascript mime type for webrick ([#98]({{ site.repository }}/issues/98))
|
1073
1282
|
|
1283
|
+
|
1074
1284
|
## 0.5.5 / 2010-01-08
|
1285
|
+
{: #v0-5-5}
|
1075
1286
|
- Bug Fixes
|
1076
1287
|
- Fix pagination % 0 bug ([#78]({{ site.repository }}/issues/78))
|
1077
1288
|
- Ensure all posts are processed first ([#71]({{ site.repository }}/issues/71))
|
1078
1289
|
|
1290
|
+
|
1079
1291
|
## NOTE
|
1080
1292
|
- After this point I will no longer be giving credit in the history;
|
1081
1293
|
that is what the commit log is for.
|
1082
1294
|
|
1295
|
+
|
1083
1296
|
## 0.5.4 / 2009-08-23
|
1297
|
+
{: #v0-5-4}
|
1084
1298
|
- Bug Fixes
|
1085
1299
|
- Do not allow symlinks (security vulnerability)
|
1086
1300
|
|
1301
|
+
|
1087
1302
|
## 0.5.3 / 2009-07-14
|
1303
|
+
{: #v0-5-3}
|
1088
1304
|
- Bug Fixes
|
1089
1305
|
- Solving the permalink bug where non-html files wouldn't work
|
1090
1306
|
([@jeffrydegrande](https://github.com/jeffrydegrande))
|
1091
1307
|
|
1308
|
+
|
1092
1309
|
## 0.5.2 / 2009-06-24
|
1310
|
+
{: #v0-5-2}
|
1093
1311
|
- Enhancements
|
1094
1312
|
- Added --paginate option to the executable along with a paginator object
|
1095
1313
|
for the payload ([@calavera](https://github.com/calavera))
|
@@ -1098,9 +1316,9 @@ prev_section: contributing
|
|
1098
1316
|
- Configuration options set in config.yml are now available through the
|
1099
1317
|
site payload ([@vilcans](https://github.com/vilcans))
|
1100
1318
|
- Posts can now have an empty YAML front matter or none at all
|
1101
|
-
(
|
1319
|
+
(@ bahuvrihi)
|
1102
1320
|
- Bug Fixes
|
1103
|
-
- Fixing Ruby 1.9 issue that requires to_s on the err object
|
1321
|
+
- Fixing Ruby 1.9 issue that requires `#to_s` on the err object
|
1104
1322
|
([@Chrononaut](https://github.com/Chrononaut))
|
1105
1323
|
- Fixes for pagination and ordering posts on the same day ([@ujh](https://github.com/ujh))
|
1106
1324
|
- Made pages respect permalinks style and permalinks in yml front matter
|
@@ -1110,13 +1328,16 @@ prev_section: contributing
|
|
1110
1328
|
- Added trailing slash to pretty permalink style so Apache is happy
|
1111
1329
|
([@eugenebolshakov](https://github.com/eugenebolshakov))
|
1112
1330
|
- Bad markdown processor in config fails sooner and with better message
|
1113
|
-
(
|
1331
|
+
(@ gcnovus)
|
1114
1332
|
- Allow CRLFs in yaml frontmatter ([@juretta](https://github.com/juretta))
|
1115
1333
|
- Added Date#xmlschema for Ruby versions < 1.9
|
1116
1334
|
|
1335
|
+
|
1117
1336
|
## 0.5.1 / 2009-05-06
|
1337
|
+
{: #v0-5-1}
|
1118
1338
|
|
1119
1339
|
### Major Enhancements
|
1340
|
+
{: #major-enhancements-v0-5-1}
|
1120
1341
|
- Next/previous posts in site payload ([@pantulis](https://github.com/pantulis), [@tomo](https://github.com/tomo))
|
1121
1342
|
- Permalink templating system
|
1122
1343
|
- Moved most of the README out to the GitHub wiki
|
@@ -1129,9 +1350,12 @@ prev_section: contributing
|
|
1129
1350
|
after highlight ([@henrik](https://github.com/henrik))
|
1130
1351
|
- CGI escaped post titles ([@Chrononaut](https://github.com/Chrononaut))
|
1131
1352
|
|
1353
|
+
|
1132
1354
|
## 0.5.0 / 2009-04-07
|
1355
|
+
{: #v0-5-0}
|
1133
1356
|
|
1134
1357
|
### Minor Enhancements
|
1358
|
+
{: #minor-enhancements-v0-5-0}
|
1135
1359
|
- Ability to set post categories via YAML ([@qrush](https://github.com/qrush))
|
1136
1360
|
- Ability to set prevent a post from publishing via YAML ([@qrush](https://github.com/qrush))
|
1137
1361
|
- Add textilize filter ([@willcodeforfoo](https://github.com/willcodeforfoo))
|
@@ -1148,19 +1372,25 @@ prev_section: contributing
|
|
1148
1372
|
- Fix tests and convert to Shoulda ([@qrush](https://github.com/qrush), [@technicalpickles](https://github.com/technicalpickles))
|
1149
1373
|
- Add Cucumber acceptance test suite ([@qrush](https://github.com/qrush), [@technicalpickles](https://github.com/technicalpickles))
|
1150
1374
|
|
1375
|
+
|
1151
1376
|
## 0.4.1
|
1152
1377
|
|
1153
1378
|
### Minor Enhancements
|
1379
|
+
{: #minor-enhancements-v--}
|
1154
1380
|
- Changed date format on wordpress converter (zeropadding) ([@dysinger](https://github.com/dysinger))
|
1155
1381
|
- Bug Fixes
|
1156
1382
|
- Add Jekyll binary as executable to gemspec ([@dysinger](https://github.com/dysinger))
|
1157
1383
|
|
1384
|
+
|
1158
1385
|
## 0.4.0 / 2009-02-03
|
1386
|
+
{: #v0-4-0}
|
1159
1387
|
|
1160
1388
|
### Major Enhancements
|
1389
|
+
{: #major-enhancements-v0-4-0}
|
1161
1390
|
- Switch to Jeweler for packaging tasks
|
1162
1391
|
|
1163
1392
|
### Minor Enhancements
|
1393
|
+
{: #minor-enhancements-v0-4-0}
|
1164
1394
|
- Type importer ([@codeslinger](https://github.com/codeslinger))
|
1165
1395
|
- `site.topics` accessor ([@baz](https://github.com/baz))
|
1166
1396
|
- Add `array_to_sentence_string` filter ([@mchung](https://github.com/mchung))
|
@@ -1176,13 +1406,17 @@ prev_section: contributing
|
|
1176
1406
|
- Test and fix the site.categories hash ([@zzot](https://github.com/zzot))
|
1177
1407
|
- Fix site payload available to files ([@matrix9180](https://github.com/matrix9180))
|
1178
1408
|
|
1409
|
+
|
1179
1410
|
## 0.3.0 / 2008-12-24
|
1411
|
+
{: #v0-3-0}
|
1180
1412
|
|
1181
1413
|
### Major Enhancements
|
1414
|
+
{: #major-enhancements-v0-3-0}
|
1182
1415
|
- Added `--server` option to start a simple WEBrick server on destination
|
1183
1416
|
directory ([@johnreilly](https://github.com/johnreilly) and [@mchung](https://github.com/mchung))
|
1184
1417
|
|
1185
1418
|
### Minor Enhancements
|
1419
|
+
{: #minor-enhancements-v0-3-0}
|
1186
1420
|
- Added post categories based on directories containing `_posts` ([@mreid](https://github.com/mreid))
|
1187
1421
|
- Added post topics based on directories underneath `_posts`
|
1188
1422
|
- Added new date filter that shows the full month name ([@mreid](https://github.com/mreid))
|
@@ -1195,39 +1429,54 @@ prev_section: contributing
|
|
1195
1429
|
templates ([@mreid](https://github.com/mreid))
|
1196
1430
|
- Properly reject directories in `_layouts`
|
1197
1431
|
|
1432
|
+
|
1198
1433
|
## 0.2.1 / 2008-12-15
|
1434
|
+
{: #v0-2-1}
|
1199
1435
|
- Major Changes
|
1200
1436
|
- Use Maruku (pure Ruby) for Markdown by default ([@mreid](https://github.com/mreid))
|
1201
1437
|
- Allow use of RDiscount with `--rdiscount` flag
|
1202
1438
|
|
1203
1439
|
### Minor Enhancements
|
1440
|
+
{: #minor-enhancements-v0-2-1}
|
1204
1441
|
- Don't load directory_watcher unless it's needed ([@pjhyett](https://github.com/pjhyett))
|
1205
1442
|
|
1443
|
+
|
1206
1444
|
## 0.2.0 / 2008-12-14
|
1445
|
+
{: #v0-2-0}
|
1207
1446
|
- Major Changes
|
1208
1447
|
- related_posts is now found in `site.related_posts`
|
1209
1448
|
|
1449
|
+
|
1210
1450
|
## 0.1.6 / 2008-12-13
|
1451
|
+
{: #v0-1-6}
|
1211
1452
|
- Major Features
|
1212
1453
|
- Include files in `_includes` with {% raw %}`{% include x.textile %}`{% endraw %}
|
1213
1454
|
|
1455
|
+
|
1214
1456
|
## 0.1.5 / 2008-12-12
|
1457
|
+
{: #v0-1-5}
|
1215
1458
|
|
1216
1459
|
### Major Enhancements
|
1460
|
+
{: #major-enhancements-v0-1-5}
|
1217
1461
|
- Code highlighting with Pygments if `--pygments` is specified
|
1218
1462
|
- Disable true LSI by default, enable with `--lsi`
|
1219
1463
|
|
1220
1464
|
### Minor Enhancements
|
1465
|
+
{: #minor-enhancements-v0-1-5}
|
1221
1466
|
- Output informative message if RDiscount is not available ([@JackDanger](https://github.com/JackDanger))
|
1222
1467
|
- Bug Fixes
|
1223
1468
|
- Prevent Jekyll from picking up the output directory as a source ([@JackDanger](https://github.com/JackDanger))
|
1224
1469
|
- Skip `related_posts` when there is only one post ([@JackDanger](https://github.com/JackDanger))
|
1225
1470
|
|
1471
|
+
|
1226
1472
|
## 0.1.4 / 2008-12-08
|
1473
|
+
{: #v0-1-4}
|
1227
1474
|
- Bug Fixes
|
1228
1475
|
- DATA does not work properly with rubygems
|
1229
1476
|
|
1477
|
+
|
1230
1478
|
## 0.1.3 / 2008-12-06
|
1479
|
+
{: #v0-1-3}
|
1231
1480
|
- Major Features
|
1232
1481
|
- Markdown support ([@vanpelt](https://github.com/vanpelt))
|
1233
1482
|
- Mephisto and CSV converters ([@vanpelt](https://github.com/vanpelt))
|
@@ -1236,22 +1485,30 @@ prev_section: contributing
|
|
1236
1485
|
- Bug Fixes
|
1237
1486
|
- Accept both `\r\n` and `\n` in YAML header ([@vanpelt](https://github.com/vanpelt))
|
1238
1487
|
|
1488
|
+
|
1239
1489
|
## 0.1.2 / 2008-11-22
|
1490
|
+
{: #v0-1-2}
|
1240
1491
|
- Major Features
|
1241
1492
|
- Add a real "related posts" implementation using Classifier
|
1242
1493
|
- Command Line Changes
|
1243
1494
|
- Allow cli to be called with 0, 1, or 2 args intuiting dir paths
|
1244
1495
|
if they are omitted
|
1245
1496
|
|
1497
|
+
|
1246
1498
|
## 0.1.1 / 2008-11-22
|
1499
|
+
{: #v0-1-1}
|
1247
1500
|
- Minor Additions
|
1248
1501
|
- Posts now support introspectional data e.g. {% raw %}`{{ page.url }}`{% endraw %}
|
1249
1502
|
|
1503
|
+
|
1250
1504
|
## 0.1.0 / 2008-11-05
|
1505
|
+
{: #v0-1-0}
|
1251
1506
|
- First release
|
1252
1507
|
- Converts posts written in Textile
|
1253
1508
|
- Converts regular site pages
|
1254
1509
|
- Simple copy of binary files
|
1255
1510
|
|
1511
|
+
|
1256
1512
|
## 0.0.0 / 2008-10-19
|
1513
|
+
{: #v0-0-0}
|
1257
1514
|
- Birthday!
|