diff --git a/History.markdown b/History.markdown index 57d24a0d..9cf76dd9 100644 --- a/History.markdown +++ b/History.markdown @@ -1,5 +1,12 @@ ## HEAD + ### Major Enhancements +### Minor Enhancements +### Bug Fixes +### Site Enhancements +### Development Fixes + +## 1.0.3 / 2013-06-07 ### Minor Enhancements * Add support to gist tag for private gists. (#1189) diff --git a/jekyll.gemspec b/jekyll.gemspec index 6fd36f02..5e2c4b22 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.2' + s.version = '1.0.3' s.license = 'MIT' - s.date = '2013-05-12' + s.date = '2013-06-07' s.rubyforge_project = 'jekyll' s.summary = "A simple, blog aware, static site generator." diff --git a/lib/jekyll.rb b/lib/jekyll.rb index b351b107..684d5eb1 100644 --- a/lib/jekyll.rb +++ b/lib/jekyll.rb @@ -57,7 +57,7 @@ require_all 'jekyll/tags' SafeYAML::OPTIONS[:suppress_warnings] = true module Jekyll - VERSION = '1.0.2' + VERSION = '1.0.3' # Public: Generate a Jekyll configuration Hash by merging the default # options with anything in _config.yml, and adding the given options on top.