Releasing 0.5.3 with a small bugfix for permalinks

This commit is contained in:
Nick Quaranto 2009-07-14 19:31:37 -04:00
parent 176c047ff1
commit e8e8f6449a
3 changed files with 76 additions and 82 deletions

View File

@ -1,3 +1,7 @@
== 0.5.3 / 2009-07-14
* Bug Fixes
* Solving the permalink bug where non-html files wouldn't work [github.com/jeffrydegrande]
== 0.5.2 / 2009-06-24 == 0.5.2 / 2009-06-24
* Enhancements * Enhancements
* Added --paginate option to the executable along with a paginator object for the payload [github.com/calavera] * Added --paginate option to the executable along with a paginator object for the payload [github.com/calavera]

View File

@ -1,4 +1,4 @@
--- ---
:major: 0 :major: 0
:minor: 5 :minor: 5
:patch: 2 :patch: 3

View File

@ -2,11 +2,11 @@
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{jekyll} s.name = %q{jekyll}
s.version = "0.5.2" s.version = "0.5.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Tom Preston-Werner"] s.authors = ["Tom Preston-Werner"]
s.date = %q{2009-06-24} s.date = %q{2009-07-14}
s.default_executable = %q{jekyll} s.default_executable = %q{jekyll}
s.description = %q{Jekyll is a simple, blog aware, static site generator.} s.description = %q{Jekyll is a simple, blog aware, static site generator.}
s.email = %q{tom@mojombo.com} s.email = %q{tom@mojombo.com}
@ -15,22 +15,11 @@ Gem::Specification.new do |s|
"README.textile" "README.textile"
] ]
s.files = [ s.files = [
".gitignore",
"History.txt", "History.txt",
"README.textile", "README.textile",
"Rakefile", "Rakefile",
"VERSION.yml", "VERSION.yml",
"bin/jekyll", "bin/jekyll",
"features/create_sites.feature",
"features/embed_filters.feature",
"features/pagination.feature",
"features/permalinks.feature",
"features/post_data.feature",
"features/site_configuration.feature",
"features/site_data.feature",
"features/step_definitions/jekyll_steps.rb",
"features/support/env.rb",
"jekyll.gemspec",
"lib/jekyll.rb", "lib/jekyll.rb",
"lib/jekyll/albino.rb", "lib/jekyll/albino.rb",
"lib/jekyll/converters/csv.rb", "lib/jekyll/converters/csv.rb",
@ -73,6 +62,7 @@ Gem::Specification.new do |s|
"test/source/css/screen.css", "test/source/css/screen.css",
"test/source/foo/_posts/bar/2008-12-12-topical-post.textile", "test/source/foo/_posts/bar/2008-12-12-topical-post.textile",
"test/source/index.html", "test/source/index.html",
"test/source/sitemap.xml",
"test/source/win/_posts/2009-05-24-yaml-linebreak.markdown", "test/source/win/_posts/2009-05-24-yaml-linebreak.markdown",
"test/source/z_category/_posts/2008-9-23-categories.textile", "test/source/z_category/_posts/2008-9-23-categories.textile",
"test/suite.rb", "test/suite.rb",
@ -89,19 +79,19 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--charset=UTF-8"] s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"] s.require_paths = ["lib"]
s.rubyforge_project = %q{jekyll} s.rubyforge_project = %q{jekyll}
s.rubygems_version = %q{1.3.4} s.rubygems_version = %q{1.3.3}
s.summary = %q{Jekyll is a simple, blog aware, static site generator.} s.summary = %q{Jekyll is a simple, blog aware, static site generator.}
s.test_files = [ s.test_files = [
"test/helper.rb",
"test/suite.rb",
"test/test_configuration.rb",
"test/test_filters.rb",
"test/test_generated_site.rb",
"test/test_page.rb", "test/test_page.rb",
"test/test_pager.rb",
"test/test_post.rb", "test/test_post.rb",
"test/test_site.rb", "test/test_pager.rb",
"test/test_tags.rb" "test/test_configuration.rb",
"test/test_tags.rb",
"test/test_generated_site.rb",
"test/suite.rb",
"test/test_filters.rb",
"test/helper.rb",
"test/test_site.rb"
] ]
if s.respond_to? :specification_version then if s.respond_to? :specification_version then