diff --git a/History.txt b/History.txt index 4929791f..55aa6027 100644 --- a/History.txt +++ b/History.txt @@ -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 diff --git a/jekyll.gemspec b/jekyll.gemspec index e6ab6531..cab7dabd 100644 --- a/jekyll.gemspec +++ b/jekyll.gemspec @@ -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." diff --git a/lib/jekyll.rb b/lib/jekyll.rb index 9e8def36..b44eb5f3 100644 --- a/lib/jekyll.rb +++ b/lib/jekyll.rb @@ -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).