From 99ee0c4803e6ac520f862b3341b23612a018cf48 Mon Sep 17 00:00:00 2001 From: Tom Preston-Werner Date: Tue, 22 Jun 2010 17:56:16 -0700 Subject: [PATCH] Release 0.6.0 --- History.txt | 2 +- jekyll.gemspec | 8 +++++--- lib/jekyll.rb | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/History.txt b/History.txt index 8f13f2e6..f2521821 100644 --- a/History.txt +++ b/History.txt @@ -1,4 +1,4 @@ -== Edge +== 0.6.0 * 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 71ea1f9d..d4594397 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.5.7' - s.date = '2010-04-21' + s.version = '0.6.0' + s.date = '2010-06-22' s.rubyforge_project = 'jekyll' s.summary = "A simple, blog aware, static site generator." @@ -37,6 +37,7 @@ Gem::Specification.new do |s| # = MANIFEST = s.files = %w[ History.txt + LICENSE README.textile Rakefile bin/jekyll @@ -60,7 +61,7 @@ Gem::Specification.new do |s| lib/jekyll/converters/textile.rb lib/jekyll/convertible.rb lib/jekyll/core_ext.rb - lib/jekyll/extension.rb + lib/jekyll/errors.rb lib/jekyll/filters.rb lib/jekyll/generator.rb lib/jekyll/generators/pagination.rb @@ -72,6 +73,7 @@ Gem::Specification.new do |s| lib/jekyll/migrators/typo.rb lib/jekyll/migrators/wordpress.rb lib/jekyll/page.rb + lib/jekyll/plugin.rb lib/jekyll/post.rb lib/jekyll/site.rb lib/jekyll/static_file.rb diff --git a/lib/jekyll.rb b/lib/jekyll.rb index 3aa3b86f..eb10a557 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.5.7' + VERSION = '0.6.0' # Default options. Overriden by values in _config.yml or command-line opts. # (Strings rather symbols used for compatability with YAML).