diff --git a/History.txt b/History.txt index 98758ba1..e90ac709 100644 --- a/History.txt +++ b/History.txt @@ -1,4 +1,8 @@ -== 0.1.3 / +== 0.1.4 / 2008-12-08 + * Bug Fixes + * DATA does not work properly with rubygems + +== 0.1.3 / 2008-12-06 * Major Features * Markdown support [github.com/vanpelt] * Mephisto and CSV converters [github.com/vanpelt] diff --git a/jekyll.gemspec b/jekyll.gemspec index 75e80f26..8bd8a623 100644 --- a/jekyll.gemspec +++ b/jekyll.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = %q{jekyll} - s.version = "0.1.3" + s.version = "0.1.4" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Tom Preston-Werner"] diff --git a/lib/jekyll.rb b/lib/jekyll.rb index 48e521d2..c82c774e 100644 --- a/lib/jekyll.rb +++ b/lib/jekyll.rb @@ -26,7 +26,7 @@ require 'jekyll/filters' require 'jekyll/blocks' module Jekyll - VERSION = '0.1.3' + VERSION = '0.1.4' def self.process(source, dest) Jekyll::Site.new(source, dest).process