Programatically create github issue links via rake task.

This commit is contained in:
zachgersh 2013-05-11 23:27:06 -07:00
parent e4543e268f
commit d2fabfcf15
2 changed files with 186 additions and 183 deletions

View File

@ -154,8 +154,11 @@ namespace :site do
puts "Generating the History doc!" puts "Generating the History doc!"
if File.exist?("History.markdown") if File.exist?("History.markdown")
file_time = File.read("History.markdown") file_time = File.read("History.markdown")
# Replacing the contents of the file for the markdown bullets # Replacing the contents of the file for the markdown bullets & issue links
rep_bullets = file_time.gsub(/\s{2}\*{1}/, "-") rep_bullets = file_time.gsub(/\s{2}\*{1}/, "-")
rep_links = rep_bullets.gsub(/#(\d+)/) do |word|
"[#{word}](https://github.com/mojombo/jekyll/issue/#{word.delete("#")})"
end
# Create a hash for the front matter that is to be included # Create a hash for the front matter that is to be included
front_matter = {"layout" => "docs", "title" => "History", front_matter = {"layout" => "docs", "title" => "History",
"permalink" => "/docs/history/"} "permalink" => "/docs/history/"}
@ -163,7 +166,7 @@ namespace :site do
Dir.chdir('site/docs/history') do Dir.chdir('site/docs/history') do
File.open("index.md", "w") do |file| File.open("index.md", "w") do |file|
file.write("#{front_matter.to_yaml}---\n\n") file.write("#{front_matter.to_yaml}---\n\n")
file.write(rep_bullets) file.write(rep_links)
end end
end end
else else

View File

@ -7,174 +7,174 @@ permalink: /docs/history/
## HEAD ## HEAD
### Major Enhancements ### Major Enhancements
### Minor Enhancements ### Minor Enhancements
- Update pygments.rb version to 0.5.0 (#1061) - Update pygments.rb version to 0.5.0 ([#1061](https://github.com/mojombo/jekyll/issue/1061))
- Update Kramdown version to 1.0.2 (#1067) - Update Kramdown version to 1.0.2 ([#1067](https://github.com/mojombo/jekyll/issue/1067))
### Bug Fixes ### Bug Fixes
- Catching that Redcarpet gem isn't installed (#1059) - Catching that Redcarpet gem isn't installed ([#1059](https://github.com/mojombo/jekyll/issue/1059))
### Site Enhancements ### Site Enhancements
- Remove pygments-installation instructions, as pygments.rb is bundled with it (#1079) - Remove pygments-installation instructions, as pygments.rb is bundled with it ([#1079](https://github.com/mojombo/jekyll/issue/1079))
- Move pages to be Pages for realz (#985) - Move pages to be Pages for realz ([#985](https://github.com/mojombo/jekyll/issue/985))
- Updated links to Liquid documentation (#1073) - Updated links to Liquid documentation ([#1073](https://github.com/mojombo/jekyll/issue/1073))
### Development Fixes ### Development Fixes
## 1.0.1 / 2013-05-08 ## 1.0.1 / 2013-05-08
### Minor Enhancements ### Minor Enhancements
- Do not force use of toc_token when using generate_tok in RDiscount (#1048) - Do not force use of toc_token when using generate_tok in RDiscount ([#1048](https://github.com/mojombo/jekyll/issue/1048))
- Add newer `language-` class name prefix to code blocks (#1037) - Add newer `language-` class name prefix to code blocks ([#1037](https://github.com/mojombo/jekyll/issue/1037))
- Commander error message now preferred over process abort with incorrect args (#1040) - Commander error message now preferred over process abort with incorrect args ([#1040](https://github.com/mojombo/jekyll/issue/1040))
### Bug Fixes ### Bug Fixes
- Make Redcarpet respect the pygments configuration option (#1053) - Make Redcarpet respect the pygments configuration option ([#1053](https://github.com/mojombo/jekyll/issue/1053))
- Fix the index build with LSI (#1045) - Fix the index build with LSI ([#1045](https://github.com/mojombo/jekyll/issue/1045))
- Don't print deprecation warning when no arguments are specified. (#1041) - Don't print deprecation warning when no arguments are specified. ([#1041](https://github.com/mojombo/jekyll/issue/1041))
- Add missing `</div>` to site template used by `new` subcommand, fixed typos in code (#1032) - Add missing `</div>` to site template used by `new` subcommand, fixed typos in code ([#1032](https://github.com/mojombo/jekyll/issue/1032))
### Site Enhancements ### Site Enhancements
- Changed https to http in the GitHub Pages link (#1051) - Changed https to http in the GitHub Pages link ([#1051](https://github.com/mojombo/jekyll/issue/1051))
- Remove CSS cruft, fix typos, fix HTML errors (#1028) - Remove CSS cruft, fix typos, fix HTML errors ([#1028](https://github.com/mojombo/jekyll/issue/1028))
- Removing manual install of Pip and Distribute (#1025) - Removing manual install of Pip and Distribute ([#1025](https://github.com/mojombo/jekyll/issue/1025))
- Updated URL for Markdown references plugin (#1022) - Updated URL for Markdown references plugin ([#1022](https://github.com/mojombo/jekyll/issue/1022))
### Development Fixes ### Development Fixes
- Markdownify history file (#1027) - Markdownify history file ([#1027](https://github.com/mojombo/jekyll/issue/1027))
- Update links on README to point to new jekyllrb.com (#1018) - Update links on README to point to new jekyllrb.com ([#1018](https://github.com/mojombo/jekyll/issue/1018))
## 1.0.0 / 2013-05-06 ## 1.0.0 / 2013-05-06
### Major Enhancements ### Major Enhancements
- Add `jekyll new` subcommand: generate a jekyll scaffold (#764) - Add `jekyll new` subcommand: generate a jekyll scaffold ([#764](https://github.com/mojombo/jekyll/issue/764))
- Refactored jekyll commands into subcommands: build, serve, and migrate. (#690) - Refactored jekyll commands into subcommands: build, serve, and migrate. ([#690](https://github.com/mojombo/jekyll/issue/690))
- Removed importers/migrators from main project, migrated to jekyll-import sub-gem (#793) - Removed importers/migrators from main project, migrated to jekyll-import sub-gem ([#793](https://github.com/mojombo/jekyll/issue/793))
- Added ability to render drafts in `_drafts` folder via command line (#833) - Added ability to render drafts in `_drafts` folder via command line ([#833](https://github.com/mojombo/jekyll/issue/833))
- Add ordinal date permalink style (/:categories/:year/:y_day/:title.html) (#928) - Add ordinal date permalink style (/:categories/:year/:y_day/:title.html) ([#928](https://github.com/mojombo/jekyll/issue/928))
### Minor Enhancements ### Minor Enhancements
- Site template HTML5-ified (#964) - Site template HTML5-ified ([#964](https://github.com/mojombo/jekyll/issue/964))
- Use post's directory path when matching for the post_url tag (#998) - Use post's directory path when matching for the post_url tag ([#998](https://github.com/mojombo/jekyll/issue/998))
- Loosen dependency on Pygments so it's only required when it's needed (#1015) - Loosen dependency on Pygments so it's only required when it's needed ([#1015](https://github.com/mojombo/jekyll/issue/1015))
- Parse strings into Time objects for date-related Liquid filters (#1014) - Parse strings into Time objects for date-related Liquid filters ([#1014](https://github.com/mojombo/jekyll/issue/1014))
- Tell the user if there is no subcommand specified (#1008) - Tell the user if there is no subcommand specified ([#1008](https://github.com/mojombo/jekyll/issue/1008))
- Freak out if the destination of `jekyll new` exists and is non-empty (#981) - Freak out if the destination of `jekyll new` exists and is non-empty ([#981](https://github.com/mojombo/jekyll/issue/981))
- Add `timezone` configuration option for compilation (#957) - Add `timezone` configuration option for compilation ([#957](https://github.com/mojombo/jekyll/issue/957))
- Add deprecation messages for pre-1.0 CLI options (#959) - Add deprecation messages for pre-1.0 CLI options ([#959](https://github.com/mojombo/jekyll/issue/959))
- Refactor and colorize logging (#959) - Refactor and colorize logging ([#959](https://github.com/mojombo/jekyll/issue/959))
- Refactor Markdown parsing (#955) - Refactor Markdown parsing ([#955](https://github.com/mojombo/jekyll/issue/955))
- Added application/vnd.apple.pkpass to mime.types served by WEBrick (#907) - Added application/vnd.apple.pkpass to mime.types served by WEBrick ([#907](https://github.com/mojombo/jekyll/issue/907))
- Move template site to default markdown renderer (#961) - Move template site to default markdown renderer ([#961](https://github.com/mojombo/jekyll/issue/961))
- Expose new attribute to Liquid via `page`: `page.path` (#951) - Expose new attribute to Liquid via `page`: `page.path` ([#951](https://github.com/mojombo/jekyll/issue/951))
- Accept multiple config files from command line (#945) - Accept multiple config files from command line ([#945](https://github.com/mojombo/jekyll/issue/945))
- Add page variable to liquid custom tags and blocks (#413) - Add page variable to liquid custom tags and blocks ([#413](https://github.com/mojombo/jekyll/issue/413))
- Add paginator.previous_page_path and paginator.next_page_path (#942) - Add paginator.previous_page_path and paginator.next_page_path ([#942](https://github.com/mojombo/jekyll/issue/942))
- Backwards compatibility for 'auto' (#821, #934) - Backwards compatibility for 'auto' ([#821](https://github.com/mojombo/jekyll/issue/821), [#934](https://github.com/mojombo/jekyll/issue/934))
- Added date_to_rfc822 used on RSS feeds (#892) - Added date_to_rfc822 used on RSS feeds ([#892](https://github.com/mojombo/jekyll/issue/892))
- Upgrade version of pygments.rb to 0.4.2 (#927) - Upgrade version of pygments.rb to 0.4.2 ([#927](https://github.com/mojombo/jekyll/issue/927))
- Added short month (e.g. "Sep") to permalink style options for posts (#890) - Added short month (e.g. "Sep") to permalink style options for posts ([#890](https://github.com/mojombo/jekyll/issue/890))
- Expose site.baseurl to Liquid templates (#869) - Expose site.baseurl to Liquid templates ([#869](https://github.com/mojombo/jekyll/issue/869))
- Adds excerpt attribute to posts which contains first paragraph of content (#837) - Adds excerpt attribute to posts which contains first paragraph of content ([#837](https://github.com/mojombo/jekyll/issue/837))
- Accept custom configuration file via CLI (#863) - Accept custom configuration file via CLI ([#863](https://github.com/mojombo/jekyll/issue/863))
- Load in GitHub Pages MIME Types on `jekyll serve` (#847, #871) - Load in GitHub Pages MIME Types on `jekyll serve` ([#847](https://github.com/mojombo/jekyll/issue/847), [#871](https://github.com/mojombo/jekyll/issue/871))
- Improve debugability of error message for a malformed highlight tag (#785) - Improve debugability of error message for a malformed highlight tag ([#785](https://github.com/mojombo/jekyll/issue/785))
- Allow symlinked files in unsafe mode (#824) - Allow symlinked files in unsafe mode ([#824](https://github.com/mojombo/jekyll/issue/824))
- Add 'gist' Liquid tag to core (#822, #861) - Add 'gist' Liquid tag to core ([#822](https://github.com/mojombo/jekyll/issue/822), [#861](https://github.com/mojombo/jekyll/issue/861))
- New format of Jekyll output (#795) - New format of Jekyll output ([#795](https://github.com/mojombo/jekyll/issue/795))
- Reinstate --limit_posts and --future switches (#788) - Reinstate --limit_posts and --future switches ([#788](https://github.com/mojombo/jekyll/issue/788))
- Remove ambiguity from command descriptions (#815) - Remove ambiguity from command descriptions ([#815](https://github.com/mojombo/jekyll/issue/815))
- Fix SafeYAML Warnings (#807) - Fix SafeYAML Warnings ([#807](https://github.com/mojombo/jekyll/issue/807))
- Relaxed Kramdown version to 0.14 (#808) - Relaxed Kramdown version to 0.14 ([#808](https://github.com/mojombo/jekyll/issue/808))
- Aliased `jekyll server` to `jekyll serve`. (#792) - Aliased `jekyll server` to `jekyll serve`. ([#792](https://github.com/mojombo/jekyll/issue/792))
- Updated gem versions for Kramdown, Rake, Shoulda, Cucumber, and RedCarpet. (#744) - Updated gem versions for Kramdown, Rake, Shoulda, Cucumber, and RedCarpet. ([#744](https://github.com/mojombo/jekyll/issue/744))
- Refactored jekyll subcommands into Jekyll::Commands submodule, which now contains them (#768) - Refactored jekyll subcommands into Jekyll::Commands submodule, which now contains them ([#768](https://github.com/mojombo/jekyll/issue/768))
- Rescue from import errors in Wordpress.com migrator (#671) - Rescue from import errors in Wordpress.com migrator ([#671](https://github.com/mojombo/jekyll/issue/671))
- Massively accelerate LSI performance (#664) - Massively accelerate LSI performance ([#664](https://github.com/mojombo/jekyll/issue/664))
- Truncate post slugs when importing from Tumblr (#496) - Truncate post slugs when importing from Tumblr ([#496](https://github.com/mojombo/jekyll/issue/496))
- Add glob support to include, exclude option (#743) - Add glob support to include, exclude option ([#743](https://github.com/mojombo/jekyll/issue/743))
- Layout of Page or Post defaults to 'page' or 'post', respectively (#580) - Layout of Page or Post defaults to 'page' or 'post', respectively ([#580](https://github.com/mojombo/jekyll/issue/580))
REPEALED by (#977) REPEALED by ([#977](https://github.com/mojombo/jekyll/issue/977))
- "Keep files" feature (#685) - "Keep files" feature ([#685](https://github.com/mojombo/jekyll/issue/685))
- Output full path & name for files that don't parse (#745) - Output full path & name for files that don't parse ([#745](https://github.com/mojombo/jekyll/issue/745))
- Add source and destination directory protection (#535) - Add source and destination directory protection ([#535](https://github.com/mojombo/jekyll/issue/535))
- Better YAML error message (#718) - Better YAML error message ([#718](https://github.com/mojombo/jekyll/issue/718))
- Bug Fixes - Bug Fixes
- Paginate in subdirectories properly (#1016) - Paginate in subdirectories properly ([#1016](https://github.com/mojombo/jekyll/issue/1016))
- Ensure post and page URLs have a leading slash (#992) - Ensure post and page URLs have a leading slash ([#992](https://github.com/mojombo/jekyll/issue/992))
- Catch all exceptions, not just StandardError descendents (#1007) - Catch all exceptions, not just StandardError descendents ([#1007](https://github.com/mojombo/jekyll/issue/1007))
- Bullet-proof limit_posts option (#1004) - Bullet-proof limit_posts option ([#1004](https://github.com/mojombo/jekyll/issue/1004))
- Read in YAML as UTF-8 to accept non-ASCII chars (#836) - Read in YAML as UTF-8 to accept non-ASCII chars ([#836](https://github.com/mojombo/jekyll/issue/836))
- Fix the CLI option --plugins to actually accept dirs and files (#993) - Fix the CLI option --plugins to actually accept dirs and files ([#993](https://github.com/mojombo/jekyll/issue/993))
- Allow 'excerpt' in YAML Front-Matter to override the extracted excerpt (#946) - Allow 'excerpt' in YAML Front-Matter to override the extracted excerpt ([#946](https://github.com/mojombo/jekyll/issue/946))
- Fix cascade problem with site.baseurl, site.port and site.host. (#935) - Fix cascade problem with site.baseurl, site.port and site.host. ([#935](https://github.com/mojombo/jekyll/issue/935))
- Filter out directories with valid post names (#875) - Filter out directories with valid post names ([#875](https://github.com/mojombo/jekyll/issue/875))
- Fix symlinked static files not being correctly built in unsafe mode (#909) - Fix symlinked static files not being correctly built in unsafe mode ([#909](https://github.com/mojombo/jekyll/issue/909))
- Fix integration with directory_watcher 1.4.x (#916) - Fix integration with directory_watcher 1.4.x ([#916](https://github.com/mojombo/jekyll/issue/916))
- Accepting strings as arguments to jekyll-import command (#910) - Accepting strings as arguments to jekyll-import command ([#910](https://github.com/mojombo/jekyll/issue/910))
- Force usage of older directory_watcher gem as 1.5 is broken (#883) - Force usage of older directory_watcher gem as 1.5 is broken ([#883](https://github.com/mojombo/jekyll/issue/883))
- Ensure all Post categories are downcase (#842, #872) - Ensure all Post categories are downcase ([#842](https://github.com/mojombo/jekyll/issue/842), [#872](https://github.com/mojombo/jekyll/issue/872))
- Force encoding of the rdiscount TOC to UTF8 to avoid conversion errors (#555) - Force encoding of the rdiscount TOC to UTF8 to avoid conversion errors ([#555](https://github.com/mojombo/jekyll/issue/555))
- Patch for multibyte URI problem with jekyll serve (#723) - Patch for multibyte URI problem with jekyll serve ([#723](https://github.com/mojombo/jekyll/issue/723))
- Order plugin execution by priority (#864) - Order plugin execution by priority ([#864](https://github.com/mojombo/jekyll/issue/864))
- Fixed Page#dir and Page#url for edge cases (#536) - Fixed Page#dir and Page#url for edge cases ([#536](https://github.com/mojombo/jekyll/issue/536))
- Fix broken post_url with posts with a time in their YAML Front-Matter (#831) - Fix broken post_url with posts with a time in their YAML Front-Matter ([#831](https://github.com/mojombo/jekyll/issue/831))
- Look for plugins under the source directory (#654) - Look for plugins under the source directory ([#654](https://github.com/mojombo/jekyll/issue/654))
- Tumblr Migrator: finds _posts dir correctly, fixes truncation of long - Tumblr Migrator: finds _posts dir correctly, fixes truncation of long
post names (#775) post names ([#775](https://github.com/mojombo/jekyll/issue/775))
- Force Categories to be Strings (#767) - Force Categories to be Strings ([#767](https://github.com/mojombo/jekyll/issue/767))
- Safe YAML plugin to prevent vulnerability (#777) - Safe YAML plugin to prevent vulnerability ([#777](https://github.com/mojombo/jekyll/issue/777))
- Add SVG support to Jekyll/WEBrick. (#407, #406) - Add SVG support to Jekyll/WEBrick. ([#407](https://github.com/mojombo/jekyll/issue/407), [#406](https://github.com/mojombo/jekyll/issue/406))
- Prevent custom destination from causing continuous regen on watch (#528, #820, #862) - Prevent custom destination from causing continuous regen on watch ([#528](https://github.com/mojombo/jekyll/issue/528), [#820](https://github.com/mojombo/jekyll/issue/820), [#862](https://github.com/mojombo/jekyll/issue/862))
### Site Enhancements ### Site Enhancements
- Responsify (#860) - Responsify ([#860](https://github.com/mojombo/jekyll/issue/860))
- Fix spelling, punctuation and phrasal errors (#989) - Fix spelling, punctuation and phrasal errors ([#989](https://github.com/mojombo/jekyll/issue/989))
- Update quickstart instructions with `new` command (#966) - Update quickstart instructions with `new` command ([#966](https://github.com/mojombo/jekyll/issue/966))
- Add docs for page.excerpt (#956) - Add docs for page.excerpt ([#956](https://github.com/mojombo/jekyll/issue/956))
- Add docs for page.path (#951) - Add docs for page.path ([#951](https://github.com/mojombo/jekyll/issue/951))
- Clean up site docs to prepare for 1.0 release (#918) - Clean up site docs to prepare for 1.0 release ([#918](https://github.com/mojombo/jekyll/issue/918))
- Bring site into master branch with better preview/deploy (#709) - Bring site into master branch with better preview/deploy ([#709](https://github.com/mojombo/jekyll/issue/709))
- Redesigned site (#583) - Redesigned site ([#583](https://github.com/mojombo/jekyll/issue/583))
### Development Fixes ### Development Fixes
- Exclude Cucumber 1.2.4, which causes tests to fail in 1.9.2 (#938) - Exclude Cucumber 1.2.4, which causes tests to fail in 1.9.2 ([#938](https://github.com/mojombo/jekyll/issue/938))
- Added "features:html" rake task for debugging purposes, cleaned up - Added "features:html" rake task for debugging purposes, cleaned up
cucumber profiles (#832) cucumber profiles ([#832](https://github.com/mojombo/jekyll/issue/832))
- Explicitly require HTTPS rubygems source in Gemfile (#826) - Explicitly require HTTPS rubygems source in Gemfile ([#826](https://github.com/mojombo/jekyll/issue/826))
- Changed Ruby version for development to 1.9.3-p374 from p362 (#801) - Changed Ruby version for development to 1.9.3-p374 from p362 ([#801](https://github.com/mojombo/jekyll/issue/801))
- Including a link to the GitHub Ruby style guide in CONTRIBUTING.md (#806) - Including a link to the GitHub Ruby style guide in CONTRIBUTING.md ([#806](https://github.com/mojombo/jekyll/issue/806))
- Added script/bootstrap (#776) - Added script/bootstrap ([#776](https://github.com/mojombo/jekyll/issue/776))
- Running Simplecov under 2 conditions: ENV(COVERAGE)=true and with Ruby version - Running Simplecov under 2 conditions: ENV(COVERAGE)=true and with Ruby version
of greater than 1.9 (#771) of greater than 1.9 ([#771](https://github.com/mojombo/jekyll/issue/771))
- Switch to Simplecov for coverage report (#765) - Switch to Simplecov for coverage report ([#765](https://github.com/mojombo/jekyll/issue/765))
## 0.12.1 / 2013-02-19 ## 0.12.1 / 2013-02-19
### Minor Enhancements ### Minor Enhancements
- Update Kramdown version to 0.14.1 (#744) - Update Kramdown version to 0.14.1 ([#744](https://github.com/mojombo/jekyll/issue/744))
- Test Enhancements - Test Enhancements
- Update Rake version to 10.0.3 (#744) - Update Rake version to 10.0.3 ([#744](https://github.com/mojombo/jekyll/issue/744))
- Update Shoulda version to 3.3.2 (#744) - Update Shoulda version to 3.3.2 ([#744](https://github.com/mojombo/jekyll/issue/744))
- Update Redcarpet version to 2.2.2 (#744) - Update Redcarpet version to 2.2.2 ([#744](https://github.com/mojombo/jekyll/issue/744))
## 0.12.0 / 2012-12-22 ## 0.12.0 / 2012-12-22
### Minor Enhancements ### Minor Enhancements
- Add ability to explicitly specify included files (#261) - Add ability to explicitly specify included files ([#261](https://github.com/mojombo/jekyll/issue/261))
- Add --default-mimetype option (#279) - Add --default-mimetype option ([#279](https://github.com/mojombo/jekyll/issue/279))
- Allow setting of RedCloth options (#284) - Allow setting of RedCloth options ([#284](https://github.com/mojombo/jekyll/issue/284))
- Add post_url Liquid tag for internal post linking (#369) - Add post_url Liquid tag for internal post linking ([#369](https://github.com/mojombo/jekyll/issue/369))
- Allow multiple plugin dirs to be specified (#438) - Allow multiple plugin dirs to be specified ([#438](https://github.com/mojombo/jekyll/issue/438))
- Inline TOC token support for RDiscount (#333) - Inline TOC token support for RDiscount ([#333](https://github.com/mojombo/jekyll/issue/333))
- Add the option to specify the paginated url format (#342) - Add the option to specify the paginated url format ([#342](https://github.com/mojombo/jekyll/issue/342))
- Swap out albino for pygments.rb (#569) - Swap out albino for pygments.rb ([#569](https://github.com/mojombo/jekyll/issue/569))
- Support Redcarpet 2 and fenced code blocks (#619) - Support Redcarpet 2 and fenced code blocks ([#619](https://github.com/mojombo/jekyll/issue/619))
- Better reporting of Liquid errors (#624) - Better reporting of Liquid errors ([#624](https://github.com/mojombo/jekyll/issue/624))
- Bug Fixes - Bug Fixes
- Allow some special characters in highlight names - Allow some special characters in highlight names
- URL escape category names in URL generation (#360) - URL escape category names in URL generation ([#360](https://github.com/mojombo/jekyll/issue/360))
- Fix error with limit_posts (#442) - Fix error with limit_posts ([#442](https://github.com/mojombo/jekyll/issue/442))
- Properly select dotfile during directory scan (#363, #431, #377) - Properly select dotfile during directory scan ([#363](https://github.com/mojombo/jekyll/issue/363), [#431](https://github.com/mojombo/jekyll/issue/431), [#377](https://github.com/mojombo/jekyll/issue/377))
- Allow setting of Kramdown smart_quotes (#482) - Allow setting of Kramdown smart_quotes ([#482](https://github.com/mojombo/jekyll/issue/482))
- Ensure front-matter is at start of file (#562) - Ensure front-matter is at start of file ([#562](https://github.com/mojombo/jekyll/issue/562))
## 0.11.2 / 2011-12-27 ## 0.11.2 / 2011-12-27
- Bug Fixes - Bug Fixes
@ -182,26 +182,26 @@ permalink: /docs/history/
## 0.11.1 / 2011-12-27 ## 0.11.1 / 2011-12-27
- Bug Fixes - Bug Fixes
- Fix extra blank line in highlight blocks (#409) - Fix extra blank line in highlight blocks ([#409](https://github.com/mojombo/jekyll/issue/409))
- Update dependencies - Update dependencies
## 0.11.0 / 2011-07-10 ## 0.11.0 / 2011-07-10
### Major Enhancements ### Major Enhancements
- Add command line importer functionality (#253) - Add command line importer functionality ([#253](https://github.com/mojombo/jekyll/issue/253))
- Add Redcarpet Markdown support (#318) - Add Redcarpet Markdown support ([#318](https://github.com/mojombo/jekyll/issue/318))
- Make markdown/textile extensions configurable (#312) - Make markdown/textile extensions configurable ([#312](https://github.com/mojombo/jekyll/issue/312))
- Add `markdownify` filter - Add `markdownify` filter
### Minor Enhancements ### Minor Enhancements
- Switch to Albino gem - Switch to Albino gem
- Bundler support - Bundler support
- Use English library to avoid hoops (#292) - Use English library to avoid hoops ([#292](https://github.com/mojombo/jekyll/issue/292))
- Add Posterous importer (#254) - Add Posterous importer ([#254](https://github.com/mojombo/jekyll/issue/254))
- Fixes for Wordpress importer (#274, #252, #271) - Fixes for Wordpress importer ([#274](https://github.com/mojombo/jekyll/issue/274), [#252](https://github.com/mojombo/jekyll/issue/252), [#271](https://github.com/mojombo/jekyll/issue/271))
- Better error message for invalid post date (#291) - Better error message for invalid post date ([#291](https://github.com/mojombo/jekyll/issue/291))
- Print formatted fatal exceptions to stdout on build failure - Print formatted fatal exceptions to stdout on build failure
- Add Tumblr importer (#323) - Add Tumblr importer ([#323](https://github.com/mojombo/jekyll/issue/323))
- Add Enki importer (#320) - Add Enki importer ([#320](https://github.com/mojombo/jekyll/issue/320))
- Bug Fixes - Bug Fixes
- Secure additional path exploits - Secure additional path exploits
@ -212,75 +212,75 @@ permalink: /docs/history/
## 0.9.0 / 2010-12-15 ## 0.9.0 / 2010-12-15
### Minor Enhancements ### Minor Enhancements
- Use OptionParser's [no-] functionality for better boolean parsing. - Use OptionParser's [no-] functionality for better boolean parsing.
- Add Drupal migrator (#245) - Add Drupal migrator ([#245](https://github.com/mojombo/jekyll/issue/245))
- Complain about YAML and Liquid errors (#249) - Complain about YAML and Liquid errors ([#249](https://github.com/mojombo/jekyll/issue/249))
- Remove orphaned files during regeneration (#247) - Remove orphaned files during regeneration ([#247](https://github.com/mojombo/jekyll/issue/247))
- Add Marley migrator (#28) - Add Marley migrator ([#28](https://github.com/mojombo/jekyll/issue/28))
## 0.8.0 / 2010-11-22 ## 0.8.0 / 2010-11-22
### Minor Enhancements ### Minor Enhancements
- Add wordpress.com importer (#207) - Add wordpress.com importer ([#207](https://github.com/mojombo/jekyll/issue/207))
- Add --limit-posts cli option (#212) - Add --limit-posts cli option ([#212](https://github.com/mojombo/jekyll/issue/212))
- Add uri_escape filter (#234) - Add uri_escape filter ([#234](https://github.com/mojombo/jekyll/issue/234))
- Add --base-url cli option (#235) - Add --base-url cli option ([#235](https://github.com/mojombo/jekyll/issue/235))
- Improve MT migrator (#238) - Improve MT migrator ([#238](https://github.com/mojombo/jekyll/issue/238))
- Add kramdown support (#239) - Add kramdown support ([#239](https://github.com/mojombo/jekyll/issue/239))
- Bug Fixes - Bug Fixes
- Fixed filename basename generation (#208) - Fixed filename basename generation ([#208](https://github.com/mojombo/jekyll/issue/208))
- Set mode to UTF8 on Sequel connections (#237) - Set mode to UTF8 on Sequel connections ([#237](https://github.com/mojombo/jekyll/issue/237))
- Prevent _includes dir from being a symlink - Prevent _includes dir from being a symlink
## 0.7.0 / 2010-08-24 ## 0.7.0 / 2010-08-24
### Minor Enhancements ### Minor Enhancements
- Add support for rdiscount extensions (#173) - Add support for rdiscount extensions ([#173](https://github.com/mojombo/jekyll/issue/173))
- Bug Fixes - Bug Fixes
- Highlight should not be able to render local files - Highlight should not be able to render local files
- The site configuration may not always provide a 'time' setting (#184) - The site configuration may not always provide a 'time' setting ([#184](https://github.com/mojombo/jekyll/issue/184))
## 0.6.2 / 2010-06-25 ## 0.6.2 / 2010-06-25
- Bug Fixes - Bug Fixes
- Fix Rakefile 'release' task (tag pushing was missing origin) - Fix Rakefile 'release' task (tag pushing was missing origin)
- Ensure that RedCloth is loaded when textilize filter is used (#183) - Ensure that RedCloth is loaded when textilize filter is used ([#183](https://github.com/mojombo/jekyll/issue/183))
- Expand source, destination, and plugin paths (#180) - Expand source, destination, and plugin paths ([#180](https://github.com/mojombo/jekyll/issue/180))
- Fix page.url to include full relative path (#181) - Fix page.url to include full relative path ([#181](https://github.com/mojombo/jekyll/issue/181))
## 0.6.1 / 2010-06-24 ## 0.6.1 / 2010-06-24
- Bug Fixes - Bug Fixes
- Fix Markdown Pygments prefix and suffix (#178) - Fix Markdown Pygments prefix and suffix ([#178](https://github.com/mojombo/jekyll/issue/178))
## 0.6.0 / 2010-06-23 ## 0.6.0 / 2010-06-23
### Major Enhancements ### Major Enhancements
- Proper plugin system (#19, #100) - Proper plugin system ([#19](https://github.com/mojombo/jekyll/issue/19), [#100](https://github.com/mojombo/jekyll/issue/100))
- Add safe mode so unsafe converters/generators can be added - Add safe mode so unsafe converters/generators can be added
- Maruku is now the only processor dependency installed by default. - Maruku is now the only processor dependency installed by default.
Other processors will be lazy-loaded when necessary (and prompt the Other processors will be lazy-loaded when necessary (and prompt the
user to install them when necessary) (#57) user to install them when necessary) ([#57](https://github.com/mojombo/jekyll/issue/57))
### Minor Enhancements ### Minor Enhancements
- Inclusion/exclusion of future dated posts (#59) - Inclusion/exclusion of future dated posts ([#59](https://github.com/mojombo/jekyll/issue/59))
- Generation for a specific time (#59) - Generation for a specific time ([#59](https://github.com/mojombo/jekyll/issue/59))
- Allocate site.time on render not per site_payload invocation (#59) - Allocate site.time on render not per site_payload invocation ([#59](https://github.com/mojombo/jekyll/issue/59))
- Pages now present in the site payload and can be used through the - Pages now present in the site payload and can be used through the
site.pages and site.html_pages variables site.pages and site.html_pages variables
- Generate phase added to site#process and pagination is now a generator - Generate phase added to site#process and pagination is now a generator
- Switch to RakeGem for build/test process - Switch to RakeGem for build/test process
- Only regenerate static files when they have changed (#142) - Only regenerate static files when they have changed ([#142](https://github.com/mojombo/jekyll/issue/142))
- Allow arbitrary options to Pygments (#31) - Allow arbitrary options to Pygments ([#31](https://github.com/mojombo/jekyll/issue/31))
- Allow URL to be set via command line option (#147) - Allow URL to be set via command line option ([#147](https://github.com/mojombo/jekyll/issue/147))
- Bug Fixes - Bug Fixes
- Render highlighted code for non markdown/textile pages (#116) - Render highlighted code for non markdown/textile pages ([#116](https://github.com/mojombo/jekyll/issue/116))
- Fix highlighting on Ruby 1.9 (#65) - Fix highlighting on Ruby 1.9 ([#65](https://github.com/mojombo/jekyll/issue/65))
- Fix extension munging when pretty permalinks are enabled (#64) - Fix extension munging when pretty permalinks are enabled ([#64](https://github.com/mojombo/jekyll/issue/64))
- Stop sorting categories (#33) - Stop sorting categories ([#33](https://github.com/mojombo/jekyll/issue/33))
- Preserve generated attributes over front matter (#119) - Preserve generated attributes over front matter ([#119](https://github.com/mojombo/jekyll/issue/119))
- Fix source directory binding using Dir.pwd (#75) - Fix source directory binding using Dir.pwd ([#75](https://github.com/mojombo/jekyll/issue/75))
## 0.5.7 / 2010-01-12 ## 0.5.7 / 2010-01-12
### Minor Enhancements ### Minor Enhancements
- Allow overriding of post date in the front matter (#62, #38) - Allow overriding of post date in the front matter ([#62](https://github.com/mojombo/jekyll/issue/62), [#38](https://github.com/mojombo/jekyll/issue/38))
- Bug Fixes - Bug Fixes
- Categories isn't always an array (#73) - Categories isn't always an array ([#73](https://github.com/mojombo/jekyll/issue/73))
- Empty tags causes error in read_posts (#84) - Empty tags causes error in read_posts ([#84](https://github.com/mojombo/jekyll/issue/84))
- Fix pagination to adhere to read/render/write paradigm - Fix pagination to adhere to read/render/write paradigm
- Test Enhancement - Test Enhancement
- cucumber features no longer use site.posts.first where a better - cucumber features no longer use site.posts.first where a better
@ -288,19 +288,19 @@ permalink: /docs/history/
## 0.5.6 / 2010-01-08 ## 0.5.6 / 2010-01-08
- Bug Fixes - Bug Fixes
- Require redcloth >= 4.2.1 in tests (#92) - Require redcloth >= 4.2.1 in tests ([#92](https://github.com/mojombo/jekyll/issue/92))
- Don't break on triple dashes in yaml frontmatter (#93) - Don't break on triple dashes in yaml frontmatter ([#93](https://github.com/mojombo/jekyll/issue/93))
### Minor Enhancements ### Minor Enhancements
- Allow .mkd as markdown extension - Allow .mkd as markdown extension
- Use $stdout/err instead of constants (#99) - Use $stdout/err instead of constants ([#99](https://github.com/mojombo/jekyll/issue/99))
- Properly wrap code blocks (#91) - Properly wrap code blocks ([#91](https://github.com/mojombo/jekyll/issue/91))
- Add javascript mime type for webrick (#98) - Add javascript mime type for webrick ([#98](https://github.com/mojombo/jekyll/issue/98))
## 0.5.5 / 2010-01-08 ## 0.5.5 / 2010-01-08
- Bug Fixes - Bug Fixes
- Fix pagination % 0 bug (#78) - Fix pagination % 0 bug ([#78](https://github.com/mojombo/jekyll/issue/78))
- Ensure all posts are processed first (#71) - Ensure all posts are processed first ([#71](https://github.com/mojombo/jekyll/issue/71))
## NOTE ## NOTE
- After this point I will no longer be giving credit in the history; - After this point I will no longer be giving credit in the history;