From ed60ad6f7203e7bd663d8948ebf958864b05d766 Mon Sep 17 00:00:00 2001 From: Tom Preston-Werner Date: Mon, 15 Dec 2008 12:34:34 -0800 Subject: [PATCH] up to 0.2.1 --- History.txt | 2 +- Manifest.txt | 4 ++-- jekyll.gemspec | 6 +++--- lib/jekyll.rb | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/History.txt b/History.txt index 2a220e00..3116d651 100644 --- a/History.txt +++ b/History.txt @@ -1,4 +1,4 @@ -== +== 0.2.1 / 2008-12-15 * Major Changes * Use Maruku (pure Ruby) for Markdown by default [github.com/mreid] * Allow use of RDiscount with --rdiscount flag diff --git a/Manifest.txt b/Manifest.txt index f3059013..ac74dfba 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -17,12 +17,12 @@ lib/jekyll/site.rb lib/jekyll/tags/highlight.rb lib/jekyll/tags/include.rb test/helper.rb -test/source/_includes/sig.textile +test/source/_includes/sig.markdown test/source/_layouts/default.html test/source/_layouts/simple.html test/source/_posts/2008-10-18-foo-bar.textile test/source/_posts/2008-11-21-complex.textile -test/source/_posts/2008-12-13-include.textile +test/source/_posts/2008-12-13-include.markdown test/source/css/screen.css test/source/index.html test/source/posts/2008-12-03-permalinked-post.textile diff --git a/jekyll.gemspec b/jekyll.gemspec index 9b75d269..625c287c 100644 --- a/jekyll.gemspec +++ b/jekyll.gemspec @@ -1,15 +1,15 @@ Gem::Specification.new do |s| s.name = %q{jekyll} - s.version = "0.2.0" + s.version = "0.2.1" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Tom Preston-Werner"] - s.date = %q{2008-12-14} + s.date = %q{2008-12-15} s.default_executable = %q{jekyll} s.email = ["tom@mojombo.com"] s.executables = ["jekyll"] s.extra_rdoc_files = ["History.txt", "Manifest.txt"] - s.files = ["History.txt", "Manifest.txt", "README.textile", "Rakefile", "bin/jekyll", "jekyll.gemspec", "lib/jekyll.rb", "lib/jekyll/albino.rb", "lib/jekyll/converters/csv.rb", "lib/jekyll/converters/mephisto.rb", "lib/jekyll/convertible.rb", "lib/jekyll/filters.rb", "lib/jekyll/layout.rb", "lib/jekyll/page.rb", "lib/jekyll/post.rb", "lib/jekyll/site.rb", "lib/jekyll/tags/highlight.rb", "lib/jekyll/tags/include.rb", "test/helper.rb", "test/source/_includes/sig.textile", "test/source/_layouts/default.html", "test/source/_layouts/simple.html", "test/source/_posts/2008-10-18-foo-bar.textile", "test/source/_posts/2008-11-21-complex.textile", "test/source/_posts/2008-12-13-include.textile", "test/source/css/screen.css", "test/source/index.html", "test/source/posts/2008-12-03-permalinked-post.textile", "test/suite.rb", "test/test_jekyll.rb", "test/test_post.rb", "test/test_site.rb"] + s.files = ["History.txt", "Manifest.txt", "README.textile", "Rakefile", "bin/jekyll", "jekyll.gemspec", "lib/jekyll.rb", "lib/jekyll/albino.rb", "lib/jekyll/converters/csv.rb", "lib/jekyll/converters/mephisto.rb", "lib/jekyll/convertible.rb", "lib/jekyll/filters.rb", "lib/jekyll/layout.rb", "lib/jekyll/page.rb", "lib/jekyll/post.rb", "lib/jekyll/site.rb", "lib/jekyll/tags/highlight.rb", "lib/jekyll/tags/include.rb", "test/helper.rb", "test/source/_includes/sig.markdown", "test/source/_layouts/default.html", "test/source/_layouts/simple.html", "test/source/_posts/2008-10-18-foo-bar.textile", "test/source/_posts/2008-11-21-complex.textile", "test/source/_posts/2008-12-13-include.markdown", "test/source/css/screen.css", "test/source/index.html", "test/source/posts/2008-12-03-permalinked-post.textile", "test/suite.rb", "test/test_jekyll.rb", "test/test_post.rb", "test/test_site.rb"] s.has_rdoc = true s.rdoc_options = ["--main", "README.txt"] s.require_paths = ["lib"] diff --git a/lib/jekyll.rb b/lib/jekyll.rb index 02e453e3..7233a18c 100644 --- a/lib/jekyll.rb +++ b/lib/jekyll.rb @@ -41,7 +41,7 @@ require 'jekyll/tags/include' require 'jekyll/albino' module Jekyll - VERSION = '0.2.0' + VERSION = '0.2.1' class << self attr_accessor :source, :dest, :lsi, :pygments, :markdown_proc