Skip to content

Commit 31901ee

Browse files
committed
Release 0.8.0
1 parent 3ab0168 commit 31901ee

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

History.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
== HEAD
1+
== 0.8.0 / 2010-11-22
22
* Minor Enhancements
33
* Add wordpress.com importer (#207)
44
* Add --limit-posts cli option (#212)

jekyll.gemspec

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Gem::Specification.new do |s|
44
s.rubygems_version = '1.3.5'
55

66
s.name = 'jekyll'
7-
s.version = '0.7.0'
8-
s.date = '2010-08-24'
7+
s.version = '0.8.0'
8+
s.date = '2010-11-22'
99
s.rubyforge_project = 'jekyll'
1010

1111
s.summary = "A simple, blog aware, static site generator."
@@ -72,6 +72,7 @@ Gem::Specification.new do |s|
7272
lib/jekyll/migrators/mt.rb
7373
lib/jekyll/migrators/textpattern.rb
7474
lib/jekyll/migrators/typo.rb
75+
lib/jekyll/migrators/wordpress.com.rb
7576
lib/jekyll/migrators/wordpress.rb
7677
lib/jekyll/page.rb
7778
lib/jekyll/plugin.rb
@@ -81,6 +82,7 @@ Gem::Specification.new do |s|
8182
lib/jekyll/tags/highlight.rb
8283
lib/jekyll/tags/include.rb
8384
test/helper.rb
85+
test/source/.htaccess
8486
test/source/_includes/sig.markdown
8587
test/source/_layouts/default.html
8688
test/source/_layouts/simple.html
@@ -111,6 +113,7 @@ Gem::Specification.new do |s|
111113
test/source/category/_posts/2008-9-23-categories.textile
112114
test/source/contacts.html
113115
test/source/css/screen.css
116+
test/source/deal.with.dots.html
114117
test/source/foo/_posts/bar/2008-12-12-topical-post.textile
115118
test/source/index.html
116119
test/source/sitemap.xml
@@ -121,6 +124,7 @@ Gem::Specification.new do |s|
121124
test/test_core_ext.rb
122125
test/test_filters.rb
123126
test/test_generated_site.rb
127+
test/test_kramdown.rb
124128
test/test_page.rb
125129
test/test_pager.rb
126130
test/test_post.rb

lib/jekyll.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def require_all(path)
4545
require_all 'jekyll/tags'
4646

4747
module Jekyll
48-
VERSION = '0.7.0'
48+
VERSION = '0.8.0'
4949

5050
# Default options. Overriden by values in _config.yml or command-line opts.
5151
# (Strings rather symbols used for compatability with YAML).

0 commit comments

Comments
 (0)