Skip to content

Commit

Permalink
Release 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
parkr committed May 12, 2013
1 parent 56e7f76 commit 8051df0
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
10 changes: 8 additions & 2 deletions History.markdown
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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
Expand Down
6 changes: 4 additions & 2 deletions jekyll.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/jekyll.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def require_all(path)
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.
Expand Down

0 comments on commit 8051df0

Please sign in to comment.