Release 1.0.2

This commit is contained in:
Parker Moore 2013-05-12 15:26:45 +02:00
parent 56e7f7688e
commit 8051df0f4c
3 changed files with 13 additions and 5 deletions

View File

@ -1,4 +1,12 @@
## HEAD ## HEAD
### Major Enhancements
### Minor Enhancements
### Bug Fixes
### Site Enhancements
### Development Fixes
## 1.0.2 / 2013-05-12
### Major Enhancements ### Major Enhancements
* Add `jekyll doctor` command to check site for any known compatibility problems (#1081) * Add `jekyll doctor` command to check site for any known compatibility problems (#1081)
* Backwards-compatibilize relative permalinks (#1081) * Backwards-compatibilize relative permalinks (#1081)
@ -19,8 +27,6 @@
* Move pages to be Pages for realz (#985) * Move pages to be Pages for realz (#985)
* Updated links to Liquid documentation (#1073) * Updated links to Liquid documentation (#1073)
### Development Fixes
## 1.0.1 / 2013-05-08 ## 1.0.1 / 2013-05-08
### Minor Enhancements ### Minor Enhancements

View File

@ -4,9 +4,9 @@ Gem::Specification.new do |s|
s.rubygems_version = '1.3.5' s.rubygems_version = '1.3.5'
s.name = 'jekyll' s.name = 'jekyll'
s.version = '1.0.1' s.version = '1.0.2'
s.license = 'MIT' s.license = 'MIT'
s.date = '2013-05-08' s.date = '2013-05-12'
s.rubyforge_project = 'jekyll' s.rubyforge_project = 'jekyll'
s.summary = "A simple, blog aware, static site generator." s.summary = "A simple, blog aware, static site generator."
@ -71,6 +71,7 @@ Gem::Specification.new do |s|
lib/jekyll.rb lib/jekyll.rb
lib/jekyll/command.rb lib/jekyll/command.rb
lib/jekyll/commands/build.rb lib/jekyll/commands/build.rb
lib/jekyll/commands/doctor.rb
lib/jekyll/commands/new.rb lib/jekyll/commands/new.rb
lib/jekyll/commands/serve.rb lib/jekyll/commands/serve.rb
lib/jekyll/configuration.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-01-12-no-layout.textile
test/source/_posts/2013-03-19-not-a-post.markdown/.gitkeep test/source/_posts/2013-03-19-not-a-post.markdown/.gitkeep
test/source/_posts/2013-04-11-custom-excerpt.markdown 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/_posts/es/2008-11-21-nested.textile
test/source/about.html test/source/about.html
test/source/category/_posts/2008-9-23-categories.textile test/source/category/_posts/2008-9-23-categories.textile

View File

@ -56,7 +56,7 @@ require_all 'jekyll/tags'
SafeYAML::OPTIONS[:suppress_warnings] = true SafeYAML::OPTIONS[:suppress_warnings] = true
module Jekyll module Jekyll
VERSION = '1.0.1' VERSION = '1.0.2'
# Public: Generate a Jekyll configuration Hash by merging the default # Public: Generate a Jekyll configuration Hash by merging the default
# options with anything in _config.yml, and adding the given options on top. # options with anything in _config.yml, and adding the given options on top.