Release 0.6.2

This commit is contained in:
Tom Preston-Werner 2010-06-25 15:56:57 -07:00
parent f35d287c66
commit 5e997cae21
3 changed files with 6 additions and 6 deletions

View File

@ -1,15 +1,15 @@
== Edge
== 0.6.2 / 2010-06-25
* Bug Fixes
* Fix Rakefile 'release' task (tag pushing was missing origin)
* Ensure that RedCloth is loaded when textilize filter is used (#183)
* Expand source, destination, and plugin paths (#180)
* Fix page.url to include full relative path (#181)
== 0.6.1
== 0.6.1 / 2010-06-24
* Bug Fixes
* Fix Markdown Pygments prefix and suffix (#178)
== 0.6.0
== 0.6.0 / 2010-06-23
* Major Enhancements
* Proper plugin system (#19, #100)
* Add safe mode so unsafe converters/generators can be added

View File

@ -4,8 +4,8 @@ Gem::Specification.new do |s|
s.rubygems_version = '1.3.5'
s.name = 'jekyll'
s.version = '0.6.1'
s.date = '2010-06-23'
s.version = '0.6.2'
s.date = '2010-06-25'
s.rubyforge_project = 'jekyll'
s.summary = "A simple, blog aware, static site generator."

View File

@ -45,7 +45,7 @@ require_all 'jekyll/generators'
require_all 'jekyll/tags'
module Jekyll
VERSION = '0.6.1'
VERSION = '0.6.2'
# Default options. Overriden by values in _config.yml or command-line opts.
# (Strings rather symbols used for compatability with YAML).