diff --git a/History.txt b/History.txt index c40318ba3..20ce39584 100644 --- a/History.txt +++ b/History.txt @@ -1,4 +1,4 @@ -== HEAD +== 0.7.0 / 2010-08-24 * Minor Enhancements * Add support for rdiscount extensions (#173) * Bug Fixes diff --git a/jekyll.gemspec b/jekyll.gemspec index cab7dabdf..b5cb04192 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.2' - s.date = '2010-06-25' + s.version = '0.7.0' + s.date = '2010-08-24' s.rubyforge_project = 'jekyll' s.summary = "A simple, blog aware, static site generator." @@ -123,6 +123,7 @@ Gem::Specification.new do |s| test/test_page.rb test/test_pager.rb test/test_post.rb + test/test_rdiscount.rb test/test_site.rb test/test_tags.rb ] diff --git a/lib/jekyll.rb b/lib/jekyll.rb index a91187c38..9d13f99f5 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.2' + VERSION = '0.7.0' # Default options. Overriden by values in _config.yml or command-line opts. # (Strings rather symbols used for compatability with YAML).