jekyll 1.0.2 → 1.0.3

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.

Files changed (58) hide show
  1. checksums.yaml +8 -8
  2. data/History.markdown +46 -0
  3. data/Rakefile +35 -1
  4. data/bin/jekyll +6 -4
  5. data/features/create_sites.feature +8 -8
  6. data/features/drafts.feature +3 -3
  7. data/features/embed_filters.feature +5 -5
  8. data/features/markdown.feature +2 -2
  9. data/features/pagination.feature +8 -8
  10. data/features/permalinks.feature +5 -5
  11. data/features/post_data.feature +23 -23
  12. data/features/site_configuration.feature +9 -9
  13. data/features/site_data.feature +14 -14
  14. data/features/step_definitions/jekyll_steps.rb +16 -27
  15. data/features/support/env.rb +11 -6
  16. data/jekyll.gemspec +7 -4
  17. data/lib/jekyll.rb +7 -2
  18. data/lib/jekyll/command.rb +3 -3
  19. data/lib/jekyll/commands/build.rb +5 -5
  20. data/lib/jekyll/commands/doctor.rb +2 -2
  21. data/lib/jekyll/commands/new.rb +8 -3
  22. data/lib/jekyll/configuration.rb +31 -6
  23. data/lib/jekyll/converters/markdown/maruku_parser.rb +11 -7
  24. data/lib/jekyll/convertible.rb +4 -7
  25. data/lib/jekyll/deprecator.rb +2 -2
  26. data/lib/jekyll/filters.rb +12 -2
  27. data/lib/jekyll/generators/pagination.rb +3 -2
  28. data/lib/jekyll/layout.rb +3 -0
  29. data/lib/jekyll/post.rb +1 -23
  30. data/lib/jekyll/related_posts.rb +58 -0
  31. data/lib/jekyll/site.rb +2 -4
  32. data/lib/jekyll/{logger.rb → stevenson.rb} +26 -12
  33. data/lib/jekyll/tags/gist.rb +13 -3
  34. data/lib/site_template/_layouts/default.html +1 -1
  35. data/lib/site_template/_layouts/post.html +1 -1
  36. data/lib/site_template/css/main.css +7 -7
  37. data/site/_includes/docs_contents.html +3 -0
  38. data/site/css/pygments.css +1 -1
  39. data/site/css/style.css +9 -2
  40. data/site/docs/deployment-methods.md +1 -1
  41. data/site/docs/frontmatter.md +10 -0
  42. data/site/docs/history.md +536 -0
  43. data/site/docs/installation.md +2 -4
  44. data/site/docs/migrations.md +57 -58
  45. data/site/docs/plugins.md +3 -0
  46. data/site/docs/posts.md +24 -2
  47. data/site/docs/templates.md +50 -3
  48. data/site/docs/upgrading.md +45 -29
  49. data/test/source/_layouts/default.html +1 -1
  50. data/test/test_configuration.rb +15 -3
  51. data/test/test_page.rb +1 -1
  52. data/test/test_pager.rb +7 -0
  53. data/test/test_post.rb +11 -11
  54. data/test/test_redcloth.rb +3 -3
  55. data/test/test_related_posts.rb +41 -0
  56. data/test/test_site.rb +6 -6
  57. data/test/test_tags.rb +40 -0
  58. metadata +9 -5
@@ -54,7 +54,7 @@ TMP_GIT_CLONE=$HOME/tmp/myrepo
54
54
  PUBLIC_WWW=/var/www/myrepo
55
55
 
56
56
  git clone $GIT_REPO $TMP_GIT_CLONE
57
- jekyll build $TMP_GIT_CLONE $PUBLIC_WWW
57
+ jekyll build -s $TMP_GIT_CLONE -d $PUBLIC_WWW
58
58
  rm -Rf $TMP_GIT_CLONE
59
59
  exit
60
60
  {% endhighlight %}
@@ -34,6 +34,16 @@ relies on.
34
34
  </p>
35
35
  </div>
36
36
 
37
+ <div class="note">
38
+ <h5>ProTip™: Front Matter Variables Are Optional</h5>
39
+ <p>
40
+ If you want to use <a href="../variables">Liquid tags and variables</a> but
41
+ don't need anything in your front-matter, just leave it empty! The set of
42
+ triple-dashed lines with nothing in between will still get Jekyll to process
43
+ your file. (This is useful for things like CSS and RSS feeds!)
44
+ </p>
45
+ </div>
46
+
37
47
  ## Predefined Global Variables
38
48
 
39
49
  There are a number of predefined global variables that you can set in the
@@ -0,0 +1,536 @@
1
+ ---
2
+ layout: docs
3
+ title: History
4
+ permalink: /docs/history/
5
+ prev_section: upgrading
6
+ ---
7
+
8
+ ## HEAD
9
+ ### Major Enhancements
10
+
11
+ ### Minor Enhancements
12
+ - Move the building of related posts into their own class ([#1057](https://github.com/mojombo/jekyll/issues/1057))
13
+ - Removed trailing spaces in several places throughout the code ([#1116](https://github.com/mojombo/jekyll/issues/1116))
14
+ - Add a `--force` option to `jekyll new` ([#1115](https://github.com/mojombo/jekyll/issues/1115))
15
+
16
+ ### Bug Fixes
17
+ - Rename Jekyll::Logger to Jekyll::Stevenson to fix inheritance issue ([#1106](https://github.com/mojombo/jekyll/issues/1106))
18
+ - Exit with a non-zero exit code when dealing with a Liquid error ([#1121](https://github.com/mojombo/jekyll/issues/1121))
19
+ - Make the `exclude` and `include` options backwards compatible with
20
+ versions of Jekyll prior to 1.0 ([#1114](https://github.com/mojombo/jekyll/issues/1114))
21
+ - Fix pagination on Windows ([#1063](https://github.com/mojombo/jekyll/issues/1063))
22
+ - Fix the application of Pygments' Generic Output style to Go code
23
+ ([#1156](https://github.com/mojombo/jekyll/issues/1156))
24
+
25
+ ### Site Enhancements
26
+ - Documentation for `date_to_rfc822` and `uri_escape` ([#1142](https://github.com/mojombo/jekyll/issues/1142))
27
+ - Documentation highlight boxes shouldn't show scrollbars if not necessary ([#1123](https://github.com/mojombo/jekyll/issues/1123))
28
+ - Add link to jekyll-minibundle in the doc's plugins list ([#1035](https://github.com/mojombo/jekyll/issues/1035))
29
+ - Quick patch for importers documentation
30
+ - Fix prefix for WordpressDotCom importer in docs ([#1107](https://github.com/mojombo/jekyll/issues/1107))
31
+ - Add jekyll-contentblocks plugin to docs ([#1068](https://github.com/mojombo/jekyll/issues/1068))
32
+ - Make code bits in notes look more natural, more readable ([#1089](https://github.com/mojombo/jekyll/issues/1089))
33
+ - Fix logic for `relative_permalinks` instructions on Upgrading page ([#1101](https://github.com/mojombo/jekyll/issues/1101))
34
+ - Add docs for post excerpt ([#1072](https://github.com/mojombo/jekyll/issues/1072))
35
+ - Add docs for gist tag ([#1072](https://github.com/mojombo/jekyll/issues/1072))
36
+ - Add docs indicating that Pygments does not need to be installed
37
+ separately ([#1099](https://github.com/mojombo/jekyll/issues/1099), [#1119](https://github.com/mojombo/jekyll/issues/1119))
38
+ - Update the migrator docs to be current ([#1136](https://github.com/mojombo/jekyll/issues/1136))
39
+ - Add the Jekyll Gallery Plugin to the plugin list ([#1143](https://github.com/mojombo/jekyll/issues/1143))
40
+
41
+ ### Development Fixes
42
+ - Fix pesky Cucumber infinite loop ([#1139](https://github.com/mojombo/jekyll/issues/1139))
43
+ - Do not write posts with timezones in Cucumber tests ([#1124](https://github.com/mojombo/jekyll/issues/1124))
44
+
45
+ ## 1.0.2 / 2013-05-12
46
+
47
+ ### Major Enhancements
48
+ - Add `jekyll doctor` command to check site for any known compatibility problems ([#1081](https://github.com/mojombo/jekyll/issues/1081))
49
+ - Backwards-compatibilize relative permalinks ([#1081](https://github.com/mojombo/jekyll/issues/1081))
50
+
51
+ ### Minor Enhancements
52
+ - Add a `data-lang="<lang>"` attribute to Redcarpet code blocks ([#1066](https://github.com/mojombo/jekyll/issues/1066))
53
+ - Deprecate old config `server_port`, match to `port` if `port` isn't set ([#1084](https://github.com/mojombo/jekyll/issues/1084))
54
+ - Update pygments.rb version to 0.5.0 ([#1061](https://github.com/mojombo/jekyll/issues/1061))
55
+ - Update Kramdown version to 1.0.2 ([#1067](https://github.com/mojombo/jekyll/issues/1067))
56
+
57
+ ### Bug Fixes
58
+ - Fix issue when categories are numbers ([#1078](https://github.com/mojombo/jekyll/issues/1078))
59
+ - Catching that Redcarpet gem isn't installed ([#1059](https://github.com/mojombo/jekyll/issues/1059))
60
+
61
+ ### Site Enhancements
62
+ - Add documentation about `relative_permalinks` ([#1081](https://github.com/mojombo/jekyll/issues/1081))
63
+ - Remove pygments-installation instructions, as pygments.rb is bundled with it ([#1079](https://github.com/mojombo/jekyll/issues/1079))
64
+ - Move pages to be Pages for realz ([#985](https://github.com/mojombo/jekyll/issues/985))
65
+ - Updated links to Liquid documentation ([#1073](https://github.com/mojombo/jekyll/issues/1073))
66
+
67
+ ## 1.0.1 / 2013-05-08
68
+
69
+ ### Minor Enhancements
70
+ - Do not force use of toc_token when using generate_tok in RDiscount ([#1048](https://github.com/mojombo/jekyll/issues/1048))
71
+ - Add newer `language-` class name prefix to code blocks ([#1037](https://github.com/mojombo/jekyll/issues/1037))
72
+ - Commander error message now preferred over process abort with incorrect args ([#1040](https://github.com/mojombo/jekyll/issues/1040))
73
+
74
+ ### Bug Fixes
75
+ - Make Redcarpet respect the pygments configuration option ([#1053](https://github.com/mojombo/jekyll/issues/1053))
76
+ - Fix the index build with LSI ([#1045](https://github.com/mojombo/jekyll/issues/1045))
77
+ - Don't print deprecation warning when no arguments are specified. ([#1041](https://github.com/mojombo/jekyll/issues/1041))
78
+ - Add missing `</div>` to site template used by `new` subcommand, fixed typos in code ([#1032](https://github.com/mojombo/jekyll/issues/1032))
79
+
80
+ ### Site Enhancements
81
+ - Changed https to http in the GitHub Pages link ([#1051](https://github.com/mojombo/jekyll/issues/1051))
82
+ - Remove CSS cruft, fix typos, fix HTML errors ([#1028](https://github.com/mojombo/jekyll/issues/1028))
83
+ - Removing manual install of Pip and Distribute ([#1025](https://github.com/mojombo/jekyll/issues/1025))
84
+ - Updated URL for Markdown references plugin ([#1022](https://github.com/mojombo/jekyll/issues/1022))
85
+
86
+ ### Development Fixes
87
+ - Markdownify history file ([#1027](https://github.com/mojombo/jekyll/issues/1027))
88
+ - Update links on README to point to new jekyllrb.com ([#1018](https://github.com/mojombo/jekyll/issues/1018))
89
+
90
+ ## 1.0.0 / 2013-05-06
91
+
92
+ ### Major Enhancements
93
+ - Add `jekyll new` subcommand: generate a jekyll scaffold ([#764](https://github.com/mojombo/jekyll/issues/764))
94
+ - Refactored jekyll commands into subcommands: build, serve, and migrate. ([#690](https://github.com/mojombo/jekyll/issues/690))
95
+ - Removed importers/migrators from main project, migrated to jekyll-import sub-gem ([#793](https://github.com/mojombo/jekyll/issues/793))
96
+ - Added ability to render drafts in `_drafts` folder via command line ([#833](https://github.com/mojombo/jekyll/issues/833))
97
+ - Add ordinal date permalink style (/:categories/:year/:y_day/:title.html) ([#928](https://github.com/mojombo/jekyll/issues/928))
98
+
99
+ ### Minor Enhancements
100
+ - Site template HTML5-ified ([#964](https://github.com/mojombo/jekyll/issues/964))
101
+ - Use post's directory path when matching for the post_url tag ([#998](https://github.com/mojombo/jekyll/issues/998))
102
+ - Loosen dependency on Pygments so it's only required when it's needed ([#1015](https://github.com/mojombo/jekyll/issues/1015))
103
+ - Parse strings into Time objects for date-related Liquid filters ([#1014](https://github.com/mojombo/jekyll/issues/1014))
104
+ - Tell the user if there is no subcommand specified ([#1008](https://github.com/mojombo/jekyll/issues/1008))
105
+ - Freak out if the destination of `jekyll new` exists and is non-empty ([#981](https://github.com/mojombo/jekyll/issues/981))
106
+ - Add `timezone` configuration option for compilation ([#957](https://github.com/mojombo/jekyll/issues/957))
107
+ - Add deprecation messages for pre-1.0 CLI options ([#959](https://github.com/mojombo/jekyll/issues/959))
108
+ - Refactor and colorize logging ([#959](https://github.com/mojombo/jekyll/issues/959))
109
+ - Refactor Markdown parsing ([#955](https://github.com/mojombo/jekyll/issues/955))
110
+ - Added application/vnd.apple.pkpass to mime.types served by WEBrick ([#907](https://github.com/mojombo/jekyll/issues/907))
111
+ - Move template site to default markdown renderer ([#961](https://github.com/mojombo/jekyll/issues/961))
112
+ - Expose new attribute to Liquid via `page`: `page.path` ([#951](https://github.com/mojombo/jekyll/issues/951))
113
+ - Accept multiple config files from command line ([#945](https://github.com/mojombo/jekyll/issues/945))
114
+ - Add page variable to liquid custom tags and blocks ([#413](https://github.com/mojombo/jekyll/issues/413))
115
+ - Add paginator.previous_page_path and paginator.next_page_path ([#942](https://github.com/mojombo/jekyll/issues/942))
116
+ - Backwards compatibility for 'auto' ([#821](https://github.com/mojombo/jekyll/issues/821), [#934](https://github.com/mojombo/jekyll/issues/934))
117
+ - Added date_to_rfc822 used on RSS feeds ([#892](https://github.com/mojombo/jekyll/issues/892))
118
+ - Upgrade version of pygments.rb to 0.4.2 ([#927](https://github.com/mojombo/jekyll/issues/927))
119
+ - Added short month (e.g. "Sep") to permalink style options for posts ([#890](https://github.com/mojombo/jekyll/issues/890))
120
+ - Expose site.baseurl to Liquid templates ([#869](https://github.com/mojombo/jekyll/issues/869))
121
+ - Adds excerpt attribute to posts which contains first paragraph of content ([#837](https://github.com/mojombo/jekyll/issues/837))
122
+ - Accept custom configuration file via CLI ([#863](https://github.com/mojombo/jekyll/issues/863))
123
+ - Load in GitHub Pages MIME Types on `jekyll serve` ([#847](https://github.com/mojombo/jekyll/issues/847), [#871](https://github.com/mojombo/jekyll/issues/871))
124
+ - Improve debugability of error message for a malformed highlight tag ([#785](https://github.com/mojombo/jekyll/issues/785))
125
+ - Allow symlinked files in unsafe mode ([#824](https://github.com/mojombo/jekyll/issues/824))
126
+ - Add 'gist' Liquid tag to core ([#822](https://github.com/mojombo/jekyll/issues/822), [#861](https://github.com/mojombo/jekyll/issues/861))
127
+ - New format of Jekyll output ([#795](https://github.com/mojombo/jekyll/issues/795))
128
+ - Reinstate --limit_posts and --future switches ([#788](https://github.com/mojombo/jekyll/issues/788))
129
+ - Remove ambiguity from command descriptions ([#815](https://github.com/mojombo/jekyll/issues/815))
130
+ - Fix SafeYAML Warnings ([#807](https://github.com/mojombo/jekyll/issues/807))
131
+ - Relaxed Kramdown version to 0.14 ([#808](https://github.com/mojombo/jekyll/issues/808))
132
+ - Aliased `jekyll server` to `jekyll serve`. ([#792](https://github.com/mojombo/jekyll/issues/792))
133
+ - Updated gem versions for Kramdown, Rake, Shoulda, Cucumber, and RedCarpet. ([#744](https://github.com/mojombo/jekyll/issues/744))
134
+ - Refactored jekyll subcommands into Jekyll::Commands submodule, which now contains them ([#768](https://github.com/mojombo/jekyll/issues/768))
135
+ - Rescue from import errors in Wordpress.com migrator ([#671](https://github.com/mojombo/jekyll/issues/671))
136
+ - Massively accelerate LSI performance ([#664](https://github.com/mojombo/jekyll/issues/664))
137
+ - Truncate post slugs when importing from Tumblr ([#496](https://github.com/mojombo/jekyll/issues/496))
138
+ - Add glob support to include, exclude option ([#743](https://github.com/mojombo/jekyll/issues/743))
139
+ - Layout of Page or Post defaults to 'page' or 'post', respectively ([#580](https://github.com/mojombo/jekyll/issues/580))
140
+ REPEALED by ([#977](https://github.com/mojombo/jekyll/issues/977))
141
+ - "Keep files" feature ([#685](https://github.com/mojombo/jekyll/issues/685))
142
+ - Output full path & name for files that don't parse ([#745](https://github.com/mojombo/jekyll/issues/745))
143
+ - Add source and destination directory protection ([#535](https://github.com/mojombo/jekyll/issues/535))
144
+ - Better YAML error message ([#718](https://github.com/mojombo/jekyll/issues/718))
145
+ - Bug Fixes
146
+ - Paginate in subdirectories properly ([#1016](https://github.com/mojombo/jekyll/issues/1016))
147
+ - Ensure post and page URLs have a leading slash ([#992](https://github.com/mojombo/jekyll/issues/992))
148
+ - Catch all exceptions, not just StandardError descendents ([#1007](https://github.com/mojombo/jekyll/issues/1007))
149
+ - Bullet-proof limit_posts option ([#1004](https://github.com/mojombo/jekyll/issues/1004))
150
+ - Read in YAML as UTF-8 to accept non-ASCII chars ([#836](https://github.com/mojombo/jekyll/issues/836))
151
+ - Fix the CLI option --plugins to actually accept dirs and files ([#993](https://github.com/mojombo/jekyll/issues/993))
152
+ - Allow 'excerpt' in YAML Front-Matter to override the extracted excerpt ([#946](https://github.com/mojombo/jekyll/issues/946))
153
+ - Fix cascade problem with site.baseurl, site.port and site.host. ([#935](https://github.com/mojombo/jekyll/issues/935))
154
+ - Filter out directories with valid post names ([#875](https://github.com/mojombo/jekyll/issues/875))
155
+ - Fix symlinked static files not being correctly built in unsafe mode ([#909](https://github.com/mojombo/jekyll/issues/909))
156
+ - Fix integration with directory_watcher 1.4.x ([#916](https://github.com/mojombo/jekyll/issues/916))
157
+ - Accepting strings as arguments to jekyll-import command ([#910](https://github.com/mojombo/jekyll/issues/910))
158
+ - Force usage of older directory_watcher gem as 1.5 is broken ([#883](https://github.com/mojombo/jekyll/issues/883))
159
+ - Ensure all Post categories are downcase ([#842](https://github.com/mojombo/jekyll/issues/842), [#872](https://github.com/mojombo/jekyll/issues/872))
160
+ - Force encoding of the rdiscount TOC to UTF8 to avoid conversion errors ([#555](https://github.com/mojombo/jekyll/issues/555))
161
+ - Patch for multibyte URI problem with jekyll serve ([#723](https://github.com/mojombo/jekyll/issues/723))
162
+ - Order plugin execution by priority ([#864](https://github.com/mojombo/jekyll/issues/864))
163
+ - Fixed Page#dir and Page#url for edge cases ([#536](https://github.com/mojombo/jekyll/issues/536))
164
+ - Fix broken post_url with posts with a time in their YAML Front-Matter ([#831](https://github.com/mojombo/jekyll/issues/831))
165
+ - Look for plugins under the source directory ([#654](https://github.com/mojombo/jekyll/issues/654))
166
+ - Tumblr Migrator: finds _posts dir correctly, fixes truncation of long
167
+ post names ([#775](https://github.com/mojombo/jekyll/issues/775))
168
+ - Force Categories to be Strings ([#767](https://github.com/mojombo/jekyll/issues/767))
169
+ - Safe YAML plugin to prevent vulnerability ([#777](https://github.com/mojombo/jekyll/issues/777))
170
+ - Add SVG support to Jekyll/WEBrick. ([#407](https://github.com/mojombo/jekyll/issues/407), [#406](https://github.com/mojombo/jekyll/issues/406))
171
+ - Prevent custom destination from causing continuous regen on watch ([#528](https://github.com/mojombo/jekyll/issues/528), [#820](https://github.com/mojombo/jekyll/issues/820), [#862](https://github.com/mojombo/jekyll/issues/862))
172
+
173
+ ### Site Enhancements
174
+ - Responsify ([#860](https://github.com/mojombo/jekyll/issues/860))
175
+ - Fix spelling, punctuation and phrasal errors ([#989](https://github.com/mojombo/jekyll/issues/989))
176
+ - Update quickstart instructions with `new` command ([#966](https://github.com/mojombo/jekyll/issues/966))
177
+ - Add docs for page.excerpt ([#956](https://github.com/mojombo/jekyll/issues/956))
178
+ - Add docs for page.path ([#951](https://github.com/mojombo/jekyll/issues/951))
179
+ - Clean up site docs to prepare for 1.0 release ([#918](https://github.com/mojombo/jekyll/issues/918))
180
+ - Bring site into master branch with better preview/deploy ([#709](https://github.com/mojombo/jekyll/issues/709))
181
+ - Redesigned site ([#583](https://github.com/mojombo/jekyll/issues/583))
182
+
183
+ ### Development Fixes
184
+ - Exclude Cucumber 1.2.4, which causes tests to fail in 1.9.2 ([#938](https://github.com/mojombo/jekyll/issues/938))
185
+ - Added "features:html" rake task for debugging purposes, cleaned up
186
+ cucumber profiles ([#832](https://github.com/mojombo/jekyll/issues/832))
187
+ - Explicitly require HTTPS rubygems source in Gemfile ([#826](https://github.com/mojombo/jekyll/issues/826))
188
+ - Changed Ruby version for development to 1.9.3-p374 from p362 ([#801](https://github.com/mojombo/jekyll/issues/801))
189
+ - Including a link to the GitHub Ruby style guide in CONTRIBUTING.md ([#806](https://github.com/mojombo/jekyll/issues/806))
190
+ - Added script/bootstrap ([#776](https://github.com/mojombo/jekyll/issues/776))
191
+ - Running Simplecov under 2 conditions: ENV(COVERAGE)=true and with Ruby version
192
+ of greater than 1.9 ([#771](https://github.com/mojombo/jekyll/issues/771))
193
+ - Switch to Simplecov for coverage report ([#765](https://github.com/mojombo/jekyll/issues/765))
194
+
195
+ ## 0.12.1 / 2013-02-19
196
+ ### Minor Enhancements
197
+ - Update Kramdown version to 0.14.1 ([#744](https://github.com/mojombo/jekyll/issues/744))
198
+ - Test Enhancements
199
+ - Update Rake version to 10.0.3 ([#744](https://github.com/mojombo/jekyll/issues/744))
200
+ - Update Shoulda version to 3.3.2 ([#744](https://github.com/mojombo/jekyll/issues/744))
201
+ - Update Redcarpet version to 2.2.2 ([#744](https://github.com/mojombo/jekyll/issues/744))
202
+
203
+ ## 0.12.0 / 2012-12-22
204
+ ### Minor Enhancements
205
+ - Add ability to explicitly specify included files ([#261](https://github.com/mojombo/jekyll/issues/261))
206
+ - Add --default-mimetype option ([#279](https://github.com/mojombo/jekyll/issues/279))
207
+ - Allow setting of RedCloth options ([#284](https://github.com/mojombo/jekyll/issues/284))
208
+ - Add post_url Liquid tag for internal post linking ([#369](https://github.com/mojombo/jekyll/issues/369))
209
+ - Allow multiple plugin dirs to be specified ([#438](https://github.com/mojombo/jekyll/issues/438))
210
+ - Inline TOC token support for RDiscount ([#333](https://github.com/mojombo/jekyll/issues/333))
211
+ - Add the option to specify the paginated url format ([#342](https://github.com/mojombo/jekyll/issues/342))
212
+ - Swap out albino for pygments.rb ([#569](https://github.com/mojombo/jekyll/issues/569))
213
+ - Support Redcarpet 2 and fenced code blocks ([#619](https://github.com/mojombo/jekyll/issues/619))
214
+ - Better reporting of Liquid errors ([#624](https://github.com/mojombo/jekyll/issues/624))
215
+ - Bug Fixes
216
+ - Allow some special characters in highlight names
217
+ - URL escape category names in URL generation ([#360](https://github.com/mojombo/jekyll/issues/360))
218
+ - Fix error with limit_posts ([#442](https://github.com/mojombo/jekyll/issues/442))
219
+ - Properly select dotfile during directory scan ([#363](https://github.com/mojombo/jekyll/issues/363), [#431](https://github.com/mojombo/jekyll/issues/431), [#377](https://github.com/mojombo/jekyll/issues/377))
220
+ - Allow setting of Kramdown smart_quotes ([#482](https://github.com/mojombo/jekyll/issues/482))
221
+ - Ensure front-matter is at start of file ([#562](https://github.com/mojombo/jekyll/issues/562))
222
+
223
+ ## 0.11.2 / 2011-12-27
224
+ - Bug Fixes
225
+ - Fix gemspec
226
+
227
+ ## 0.11.1 / 2011-12-27
228
+ - Bug Fixes
229
+ - Fix extra blank line in highlight blocks ([#409](https://github.com/mojombo/jekyll/issues/409))
230
+ - Update dependencies
231
+
232
+ ## 0.11.0 / 2011-07-10
233
+ ### Major Enhancements
234
+ - Add command line importer functionality ([#253](https://github.com/mojombo/jekyll/issues/253))
235
+ - Add Redcarpet Markdown support ([#318](https://github.com/mojombo/jekyll/issues/318))
236
+ - Make markdown/textile extensions configurable ([#312](https://github.com/mojombo/jekyll/issues/312))
237
+ - Add `markdownify` filter
238
+
239
+ ### Minor Enhancements
240
+ - Switch to Albino gem
241
+ - Bundler support
242
+ - Use English library to avoid hoops ([#292](https://github.com/mojombo/jekyll/issues/292))
243
+ - Add Posterous importer ([#254](https://github.com/mojombo/jekyll/issues/254))
244
+ - Fixes for Wordpress importer ([#274](https://github.com/mojombo/jekyll/issues/274), [#252](https://github.com/mojombo/jekyll/issues/252), [#271](https://github.com/mojombo/jekyll/issues/271))
245
+ - Better error message for invalid post date ([#291](https://github.com/mojombo/jekyll/issues/291))
246
+ - Print formatted fatal exceptions to stdout on build failure
247
+ - Add Tumblr importer ([#323](https://github.com/mojombo/jekyll/issues/323))
248
+ - Add Enki importer ([#320](https://github.com/mojombo/jekyll/issues/320))
249
+ - Bug Fixes
250
+ - Secure additional path exploits
251
+
252
+ ## 0.10.0 / 2010-12-16
253
+ - Bug Fixes
254
+ - Add --no-server option.
255
+
256
+ ## 0.9.0 / 2010-12-15
257
+ ### Minor Enhancements
258
+ - Use OptionParser's [no-] functionality for better boolean parsing.
259
+ - Add Drupal migrator ([#245](https://github.com/mojombo/jekyll/issues/245))
260
+ - Complain about YAML and Liquid errors ([#249](https://github.com/mojombo/jekyll/issues/249))
261
+ - Remove orphaned files during regeneration ([#247](https://github.com/mojombo/jekyll/issues/247))
262
+ - Add Marley migrator ([#28](https://github.com/mojombo/jekyll/issues/28))
263
+
264
+ ## 0.8.0 / 2010-11-22
265
+ ### Minor Enhancements
266
+ - Add wordpress.com importer ([#207](https://github.com/mojombo/jekyll/issues/207))
267
+ - Add --limit-posts cli option ([#212](https://github.com/mojombo/jekyll/issues/212))
268
+ - Add uri_escape filter ([#234](https://github.com/mojombo/jekyll/issues/234))
269
+ - Add --base-url cli option ([#235](https://github.com/mojombo/jekyll/issues/235))
270
+ - Improve MT migrator ([#238](https://github.com/mojombo/jekyll/issues/238))
271
+ - Add kramdown support ([#239](https://github.com/mojombo/jekyll/issues/239))
272
+ - Bug Fixes
273
+ - Fixed filename basename generation ([#208](https://github.com/mojombo/jekyll/issues/208))
274
+ - Set mode to UTF8 on Sequel connections ([#237](https://github.com/mojombo/jekyll/issues/237))
275
+ - Prevent _includes dir from being a symlink
276
+
277
+ ## 0.7.0 / 2010-08-24
278
+ ### Minor Enhancements
279
+ - Add support for rdiscount extensions ([#173](https://github.com/mojombo/jekyll/issues/173))
280
+ - Bug Fixes
281
+ - Highlight should not be able to render local files
282
+ - The site configuration may not always provide a 'time' setting ([#184](https://github.com/mojombo/jekyll/issues/184))
283
+
284
+ ## 0.6.2 / 2010-06-25
285
+ - Bug Fixes
286
+ - Fix Rakefile 'release' task (tag pushing was missing origin)
287
+ - Ensure that RedCloth is loaded when textilize filter is used ([#183](https://github.com/mojombo/jekyll/issues/183))
288
+ - Expand source, destination, and plugin paths ([#180](https://github.com/mojombo/jekyll/issues/180))
289
+ - Fix page.url to include full relative path ([#181](https://github.com/mojombo/jekyll/issues/181))
290
+
291
+ ## 0.6.1 / 2010-06-24
292
+ - Bug Fixes
293
+ - Fix Markdown Pygments prefix and suffix ([#178](https://github.com/mojombo/jekyll/issues/178))
294
+
295
+ ## 0.6.0 / 2010-06-23
296
+ ### Major Enhancements
297
+ - Proper plugin system ([#19](https://github.com/mojombo/jekyll/issues/19), [#100](https://github.com/mojombo/jekyll/issues/100))
298
+ - Add safe mode so unsafe converters/generators can be added
299
+ - Maruku is now the only processor dependency installed by default.
300
+ Other processors will be lazy-loaded when necessary (and prompt the
301
+ user to install them when necessary) ([#57](https://github.com/mojombo/jekyll/issues/57))
302
+
303
+ ### Minor Enhancements
304
+ - Inclusion/exclusion of future dated posts ([#59](https://github.com/mojombo/jekyll/issues/59))
305
+ - Generation for a specific time ([#59](https://github.com/mojombo/jekyll/issues/59))
306
+ - Allocate site.time on render not per site_payload invocation ([#59](https://github.com/mojombo/jekyll/issues/59))
307
+ - Pages now present in the site payload and can be used through the
308
+ site.pages and site.html_pages variables
309
+ - Generate phase added to site#process and pagination is now a generator
310
+ - Switch to RakeGem for build/test process
311
+ - Only regenerate static files when they have changed ([#142](https://github.com/mojombo/jekyll/issues/142))
312
+ - Allow arbitrary options to Pygments ([#31](https://github.com/mojombo/jekyll/issues/31))
313
+ - Allow URL to be set via command line option ([#147](https://github.com/mojombo/jekyll/issues/147))
314
+ - Bug Fixes
315
+ - Render highlighted code for non markdown/textile pages ([#116](https://github.com/mojombo/jekyll/issues/116))
316
+ - Fix highlighting on Ruby 1.9 ([#65](https://github.com/mojombo/jekyll/issues/65))
317
+ - Fix extension munging when pretty permalinks are enabled ([#64](https://github.com/mojombo/jekyll/issues/64))
318
+ - Stop sorting categories ([#33](https://github.com/mojombo/jekyll/issues/33))
319
+ - Preserve generated attributes over front matter ([#119](https://github.com/mojombo/jekyll/issues/119))
320
+ - Fix source directory binding using Dir.pwd ([#75](https://github.com/mojombo/jekyll/issues/75))
321
+
322
+ ## 0.5.7 / 2010-01-12
323
+ ### Minor Enhancements
324
+ - Allow overriding of post date in the front matter ([#62](https://github.com/mojombo/jekyll/issues/62), [#38](https://github.com/mojombo/jekyll/issues/38))
325
+ - Bug Fixes
326
+ - Categories isn't always an array ([#73](https://github.com/mojombo/jekyll/issues/73))
327
+ - Empty tags causes error in read_posts ([#84](https://github.com/mojombo/jekyll/issues/84))
328
+ - Fix pagination to adhere to read/render/write paradigm
329
+ - Test Enhancement
330
+ - cucumber features no longer use site.posts.first where a better
331
+ alternative is available
332
+
333
+ ## 0.5.6 / 2010-01-08
334
+ - Bug Fixes
335
+ - Require redcloth >= 4.2.1 in tests ([#92](https://github.com/mojombo/jekyll/issues/92))
336
+ - Don't break on triple dashes in yaml frontmatter ([#93](https://github.com/mojombo/jekyll/issues/93))
337
+
338
+ ### Minor Enhancements
339
+ - Allow .mkd as markdown extension
340
+ - Use $stdout/err instead of constants ([#99](https://github.com/mojombo/jekyll/issues/99))
341
+ - Properly wrap code blocks ([#91](https://github.com/mojombo/jekyll/issues/91))
342
+ - Add javascript mime type for webrick ([#98](https://github.com/mojombo/jekyll/issues/98))
343
+
344
+ ## 0.5.5 / 2010-01-08
345
+ - Bug Fixes
346
+ - Fix pagination % 0 bug ([#78](https://github.com/mojombo/jekyll/issues/78))
347
+ - Ensure all posts are processed first ([#71](https://github.com/mojombo/jekyll/issues/71))
348
+
349
+ ## NOTE
350
+ - After this point I will no longer be giving credit in the history;
351
+ that is what the commit log is for.
352
+
353
+ ## 0.5.4 / 2009-08-23
354
+ - Bug Fixes
355
+ - Do not allow symlinks (security vulnerability)
356
+
357
+ ## 0.5.3 / 2009-07-14
358
+ - Bug Fixes
359
+ - Solving the permalink bug where non-html files wouldn't work
360
+ [github.com/jeffrydegrande]
361
+
362
+ ## 0.5.2 / 2009-06-24
363
+ - Enhancements
364
+ - Added --paginate option to the executable along with a paginator object
365
+ for the payload [github.com/calavera]
366
+ - Upgraded RedCloth to 4.2.1, which makes <notextile> tags work once
367
+ again.
368
+ - Configuration options set in config.yml are now available through the
369
+ site payload [github.com/vilcans]
370
+ - Posts can now have an empty YAML front matter or none at all
371
+ [github.com/bahuvrihi]
372
+ - Bug Fixes
373
+ - Fixing Ruby 1.9 issue that requires to_s on the err object
374
+ [github.com/Chrononaut]
375
+ - Fixes for pagination and ordering posts on the same day [github.com/ujh]
376
+ - Made pages respect permalinks style and permalinks in yml front matter
377
+ [github.com/eugenebolshakov]
378
+ - Index.html file should always have index.html permalink
379
+ [github.com/eugenebolshakov]
380
+ - Added trailing slash to pretty permalink style so Apache is happy
381
+ [github.com/eugenebolshakov]
382
+ - Bad markdown processor in config fails sooner and with better message
383
+ [github.com/gcnovus]
384
+ - Allow CRLFs in yaml frontmatter [github.com/juretta]
385
+ - Added Date#xmlschema for Ruby versions < 1.9
386
+
387
+ ## 0.5.1 / 2009-05-06
388
+ ### Major Enhancements
389
+ - Next/previous posts in site payload [github.com/pantulis,
390
+ github.com/tomo]
391
+ - Permalink templating system
392
+ - Moved most of the README out to the GitHub wiki
393
+ - Exclude option in configuration so specified files won't be brought over
394
+ with generated site [github.com/duritong]
395
+ - Bug Fixes
396
+ - Making sure config.yaml references are all gone, using only config.yml
397
+ - Fixed syntax highlighting breaking for UTF-8 code [github.com/henrik]
398
+ - Worked around RDiscount bug that prevents Markdown from getting parsed
399
+ after highlight [github.com/henrik]
400
+ - CGI escaped post titles [github.com/Chrononaut]
401
+
402
+ ## 0.5.0 / 2009-04-07
403
+ ### Minor Enhancements
404
+ - Ability to set post categories via YAML [github.com/qrush]
405
+ - Ability to set prevent a post from publishing via YAML
406
+ [github.com/qrush]
407
+ - Add textilize filter [github.com/willcodeforfoo]
408
+ - Add 'pretty' permalink style for wordpress-like urls
409
+ [github.com/dysinger]
410
+ - Made it possible to enter categories from YAML as an array
411
+ [github.com/Chrononaut]
412
+ - Ignore Emacs autosave files [github.com/Chrononaut]
413
+ - Bug Fixes
414
+ - Use block syntax of popen4 to ensure that subprocesses are properly
415
+ disposed [github.com/jqr]
416
+ - Close open4 streams to prevent zombies [github.com/rtomayko]
417
+ - Only query required fields from the WP Database [github.com/ariejan]
418
+ - Prevent _posts from being copied to the destination directory
419
+ [github.com/bdimcheff]
420
+ - Refactors
421
+ - Factored the filtering code into a method [github.com/Chrononaut]
422
+ - Fix tests and convert to Shoulda [github.com/qrush,
423
+ github.com/technicalpickles]
424
+ - Add Cucumber acceptance test suite [github.com/qrush,
425
+ github.com/technicalpickles]
426
+
427
+ ## 0.4.1
428
+ ### Minor Enhancements
429
+ - Changed date format on wordpress converter (zeropadding)
430
+ [github.com/dysinger]
431
+ - Bug Fixes
432
+ - Add jekyll binary as executable to gemspec [github.com/dysinger]
433
+
434
+ ## 0.4.0 / 2009-02-03
435
+ ### Major Enhancements
436
+ - Switch to Jeweler for packaging tasks
437
+
438
+ ### Minor Enhancements
439
+ - Type importer [github.com/codeslinger]
440
+ - site.topics accessor [github.com/baz]
441
+ - Add array_to_sentence_string filter [github.com/mchung]
442
+ - Add a converter for textpattern [github.com/PerfectlyNormal]
443
+ - Add a working Mephisto / MySQL converter [github.com/ivey]
444
+ - Allowing .htaccess files to be copied over into the generated site
445
+ [github.com/briandoll]
446
+ - Add option to not put file date in permalink URL [github.com/mreid]
447
+ - Add line number capabilities to highlight blocks [github.com/jcon]
448
+ - Bug Fixes
449
+ - Fix permalink behavior [github.com/cavalle]
450
+ - Fixed an issue with pygments, markdown, and newlines
451
+ [github.com/zpinter]
452
+ - Ampersands need to be escaped [github.com/pufuwozu, github.com/ap]
453
+ - Test and fix the site.categories hash [github.com/zzot]
454
+ - Fix site payload available to files [github.com/matrix9180]
455
+
456
+ ## 0.3.0 / 2008-12-24
457
+ ### Major Enhancements
458
+ - Added --server option to start a simple WEBrick server on destination
459
+ directory [github.com/johnreilly and github.com/mchung]
460
+
461
+ ### Minor Enhancements
462
+ - Added post categories based on directories containing _posts
463
+ [github.com/mreid]
464
+ - Added post topics based on directories underneath _posts
465
+ - Added new date filter that shows the full month name [github.com/mreid]
466
+ - Merge Post's YAML front matter into its to_liquid payload
467
+ [github.com/remi]
468
+ - Restrict includes to regular files underneath _includes
469
+ - Bug Fixes
470
+ - Change YAML delimiter matcher so as to not chew up 2nd level markdown
471
+ headers [github.com/mreid]
472
+ - Fix bug that meant page data (such as the date) was not available in
473
+ templates [github.com/mreid]
474
+ - Properly reject directories in _layouts
475
+
476
+ ## 0.2.1 / 2008-12-15
477
+ - Major Changes
478
+ - Use Maruku (pure Ruby) for Markdown by default [github.com/mreid]
479
+ - Allow use of RDiscount with --rdiscount flag
480
+
481
+ ### Minor Enhancements
482
+ - Don't load directory_watcher unless it's needed [github.com/pjhyett]
483
+
484
+ ## 0.2.0 / 2008-12-14
485
+ - Major Changes
486
+ - related_posts is now found in site.related_posts
487
+
488
+ ## 0.1.6 / 2008-12-13
489
+ - Major Features
490
+ - Include files in _includes with {% include x.textile %}
491
+
492
+ ## 0.1.5 / 2008-12-12
493
+ ### Major Enhancements
494
+ - Code highlighting with Pygments if --pygments is specified
495
+ - Disable true LSI by default, enable with --lsi
496
+
497
+ ### Minor Enhancements
498
+ - Output informative message if RDiscount is not available
499
+ [github.com/JackDanger]
500
+ - Bug Fixes
501
+ - Prevent Jekyll from picking up the output directory as a source
502
+ [github.com/JackDanger]
503
+ - Skip related_posts when there is only one post [github.com/JackDanger]
504
+
505
+ ## 0.1.4 / 2008-12-08
506
+ - Bug Fixes
507
+ - DATA does not work properly with rubygems
508
+
509
+ ## 0.1.3 / 2008-12-06
510
+ - Major Features
511
+ - Markdown support [github.com/vanpelt]
512
+ - Mephisto and CSV converters [github.com/vanpelt]
513
+ - Code hilighting [github.com/vanpelt]
514
+ - Autobuild
515
+ - Bug Fixes
516
+ - Accept both \r\n and \n in YAML header [github.com/vanpelt]
517
+
518
+ ## 0.1.2 / 2008-11-22
519
+ - Major Features
520
+ - Add a real "related posts" implementation using Classifier
521
+ - Command Line Changes
522
+ - Allow cli to be called with 0, 1, or 2 args intuiting dir paths
523
+ if they are omitted
524
+
525
+ ## 0.1.1 / 2008-11-22
526
+ - Minor Additions
527
+ - Posts now support introspectional data e.g. {{ page.url }}
528
+
529
+ ## 0.1.0 / 2008-11-05
530
+ - First release
531
+ - Converts posts written in Textile
532
+ - Converts regular site pages
533
+ - Simple copy of binary files
534
+
535
+ ## 0.0.0 / 2008-10-19
536
+ - Birthday!