From d58a0c10885376dd8bfcf01ce242e844b972d85a Mon Sep 17 00:00:00 2001 From: Tom Preston-Werner Date: Sat, 22 Dec 2012 16:46:30 -0700 Subject: [PATCH] Release 0.12.0 --- History.txt | 2 +- jekyll.gemspec | 12 +++++++++--- lib/jekyll.rb | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/History.txt b/History.txt index 81840bb3..547378f8 100644 --- a/History.txt +++ b/History.txt @@ -1,4 +1,4 @@ -== HEAD +== 0.12.0 / 2012-12-22 * Minor Enhancements * Add ability to explicitly specify included files (#261) * Add --default-mimetype option (#279) diff --git a/jekyll.gemspec b/jekyll.gemspec index cd395683..f88d073e 100644 --- a/jekyll.gemspec +++ b/jekyll.gemspec @@ -4,9 +4,9 @@ Gem::Specification.new do |s| s.rubygems_version = '1.3.5' s.name = 'jekyll' - s.version = '0.11.2' + s.version = '0.12.0' s.license = 'MIT' - s.date = '2011-12-27' + s.date = '2012-12-22' s.rubyforge_project = 'jekyll' s.summary = "A simple, blog aware, static site generator." @@ -75,10 +75,12 @@ Gem::Specification.new do |s| lib/jekyll/migrators/csv.rb lib/jekyll/migrators/drupal.rb lib/jekyll/migrators/enki.rb + lib/jekyll/migrators/joomla.rb lib/jekyll/migrators/marley.rb lib/jekyll/migrators/mephisto.rb lib/jekyll/migrators/mt.rb lib/jekyll/migrators/posterous.rb + lib/jekyll/migrators/rss.rb lib/jekyll/migrators/textpattern.rb lib/jekyll/migrators/tumblr.rb lib/jekyll/migrators/typo.rb @@ -91,6 +93,9 @@ Gem::Specification.new do |s| lib/jekyll/static_file.rb lib/jekyll/tags/highlight.rb lib/jekyll/tags/include.rb + lib/jekyll/tags/post_url.rb + test/fixtures/broken_front_matter1.erb + test/fixtures/front_matter.erb test/helper.rb test/source/.htaccess test/source/_includes/sig.markdown @@ -133,6 +138,7 @@ Gem::Specification.new do |s| test/source/z_category/_posts/2008-9-23-categories.textile test/suite.rb test/test_configuration.rb + test/test_convertible.rb test/test_core_ext.rb test/test_filters.rb test/test_generated_site.rb @@ -142,9 +148,9 @@ Gem::Specification.new do |s| test/test_post.rb test/test_rdiscount.rb test/test_redcarpet.rb + test/test_redcloth.rb test/test_site.rb test/test_tags.rb - test/test_redcloth.rb ] # = MANIFEST = diff --git a/lib/jekyll.rb b/lib/jekyll.rb index 87984ecf..eef5ab1c 100644 --- a/lib/jekyll.rb +++ b/lib/jekyll.rb @@ -46,7 +46,7 @@ require_all 'jekyll/generators' require_all 'jekyll/tags' module Jekyll - VERSION = '0.11.2' + VERSION = '0.12.0' # Default options. Overriden by values in _config.yml or command-line opts. # Strings rather than symbols are used for compatability with YAML.