diff --git a/History.markdown b/History.markdown index 73b14624..207ce659 100644 --- a/History.markdown +++ b/History.markdown @@ -1,4 +1,12 @@ ## HEAD +### Major Enhancements +### Minor Enhancements +### Bug Fixes +### Site Enhancements +### Development Fixes + +## 1.0.2 / 2013-05-12 + ### Major Enhancements * Add `jekyll doctor` command to check site for any known compatibility problems (#1081) * Backwards-compatibilize relative permalinks (#1081) @@ -19,8 +27,6 @@ * Move pages to be Pages for realz (#985) * Updated links to Liquid documentation (#1073) -### Development Fixes - ## 1.0.1 / 2013-05-08 ### Minor Enhancements diff --git a/jekyll.gemspec b/jekyll.gemspec index dbfa6d7c..516bc700 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 = '1.0.1' + s.version = '1.0.2' s.license = 'MIT' - s.date = '2013-05-08' + s.date = '2013-05-12' s.rubyforge_project = 'jekyll' s.summary = "A simple, blog aware, static site generator." @@ -71,6 +71,7 @@ Gem::Specification.new do |s| lib/jekyll.rb lib/jekyll/command.rb lib/jekyll/commands/build.rb + lib/jekyll/commands/doctor.rb lib/jekyll/commands/new.rb lib/jekyll/commands/serve.rb lib/jekyll/configuration.rb @@ -203,6 +204,7 @@ Gem::Specification.new do |s| test/source/_posts/2013-01-12-no-layout.textile test/source/_posts/2013-03-19-not-a-post.markdown/.gitkeep test/source/_posts/2013-04-11-custom-excerpt.markdown + test/source/_posts/2013-05-10-number-category.textile test/source/_posts/es/2008-11-21-nested.textile test/source/about.html test/source/category/_posts/2008-9-23-categories.textile diff --git a/lib/jekyll.rb b/lib/jekyll.rb index 4f3bc1cc..d909373b 100644 --- a/lib/jekyll.rb +++ b/lib/jekyll.rb @@ -56,7 +56,7 @@ require_all 'jekyll/tags' SafeYAML::OPTIONS[:suppress_warnings] = true module Jekyll - VERSION = '1.0.1' + VERSION = '1.0.2' # Public: Generate a Jekyll configuration Hash by merging the default # options with anything in _config.yml, and adding the given options on top.