Updating history and bumping version to 0.5.2

This commit is contained in:
Nick Quaranto 2009-06-24 17:51:09 -04:00
parent 8b678a8f01
commit f1c8e388e4
3 changed files with 91 additions and 64 deletions

View File

@ -1,6 +1,9 @@
== 0.5.2 == 0.5.2 / 2009-06-24
* Minor Enhancements * Enhancements
* Added --paginate option to the executable along with a paginator object for the payload [github.com/calavera]
* Upgraded RedCloth to 4.2.1, which makes <notextile> tags work once again. * Upgraded RedCloth to 4.2.1, which makes <notextile> tags work once again.
* Configuration options set in config.yml are now available through the site payload [github.com/vilcans]
* Posts can now have an empty YAML front matter or none at all [github.com/bahuvrihi]
* Bug Fixes * Bug Fixes
* Fixing Ruby 1.9 issue that requires to_s on the err object [github.com/Chrononaut] * Fixing Ruby 1.9 issue that requires to_s on the err object [github.com/Chrononaut]
* Fixes for pagination and ordering posts on the same day [github.com/ujh] * Fixes for pagination and ordering posts on the same day [github.com/ujh]

View File

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

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.1" s.version = "0.5.2"
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-05-06} s.date = %q{2009-06-24}
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,11 +15,22 @@ 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",
@ -33,6 +44,7 @@ Gem::Specification.new do |s|
"lib/jekyll/filters.rb", "lib/jekyll/filters.rb",
"lib/jekyll/layout.rb", "lib/jekyll/layout.rb",
"lib/jekyll/page.rb", "lib/jekyll/page.rb",
"lib/jekyll/pager.rb",
"lib/jekyll/post.rb", "lib/jekyll/post.rb",
"lib/jekyll/site.rb", "lib/jekyll/site.rb",
"lib/jekyll/tags/highlight.rb", "lib/jekyll/tags/highlight.rb",
@ -51,30 +63,42 @@ Gem::Specification.new do |s|
"test/source/_posts/2009-01-27-categories.textile", "test/source/_posts/2009-01-27-categories.textile",
"test/source/_posts/2009-01-27-category.textile", "test/source/_posts/2009-01-27-category.textile",
"test/source/_posts/2009-03-12-hash-#1.markdown", "test/source/_posts/2009-03-12-hash-#1.markdown",
"test/source/_posts/2009-05-18-tag.textile",
"test/source/_posts/2009-05-18-tags.textile",
"test/source/_posts/2009-06-22-empty-yaml.textile",
"test/source/_posts/2009-06-22-no-yaml.textile",
"test/source/about.html",
"test/source/category/_posts/2008-9-23-categories.textile", "test/source/category/_posts/2008-9-23-categories.textile",
"test/source/contacts.html",
"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/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",
"test/test_configuration.rb",
"test/test_filters.rb", "test/test_filters.rb",
"test/test_generated_site.rb", "test/test_generated_site.rb",
"test/test_page.rb",
"test/test_pager.rb",
"test/test_post.rb", "test/test_post.rb",
"test/test_site.rb", "test/test_site.rb",
"test/test_tags.rb" "test/test_tags.rb"
] ]
s.has_rdoc = true
s.homepage = %q{http://github.com/mojombo/jekyll} s.homepage = %q{http://github.com/mojombo/jekyll}
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.1} s.rubygems_version = %q{1.3.4}
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/helper.rb",
"test/suite.rb", "test/suite.rb",
"test/test_configuration.rb",
"test/test_filters.rb", "test/test_filters.rb",
"test/test_generated_site.rb", "test/test_generated_site.rb",
"test/test_page.rb",
"test/test_pager.rb",
"test/test_post.rb", "test/test_post.rb",
"test/test_site.rb", "test/test_site.rb",
"test/test_tags.rb" "test/test_tags.rb"
@ -82,17 +106,17 @@ Gem::Specification.new do |s|
if s.respond_to? :specification_version then if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2 s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<RedCloth>, ["= 4.1.0"]) s.add_runtime_dependency(%q<RedCloth>, [">= 4.2.1"])
s.add_runtime_dependency(%q<liquid>, [">= 1.9.0"]) s.add_runtime_dependency(%q<liquid>, [">= 1.9.0"])
s.add_runtime_dependency(%q<classifier>, [">= 1.3.1"]) s.add_runtime_dependency(%q<classifier>, [">= 1.3.1"])
s.add_runtime_dependency(%q<maruku>, [">= 0.5.9"]) s.add_runtime_dependency(%q<maruku>, [">= 0.5.9"])
s.add_runtime_dependency(%q<directory_watcher>, [">= 1.1.1"]) s.add_runtime_dependency(%q<directory_watcher>, [">= 1.1.1"])
s.add_runtime_dependency(%q<open4>, [">= 0.9.6"]) s.add_runtime_dependency(%q<open4>, [">= 0.9.6"])
else else
s.add_dependency(%q<RedCloth>, ["= 4.1.0"]) s.add_dependency(%q<RedCloth>, [">= 4.2.1"])
s.add_dependency(%q<liquid>, [">= 1.9.0"]) s.add_dependency(%q<liquid>, [">= 1.9.0"])
s.add_dependency(%q<classifier>, [">= 1.3.1"]) s.add_dependency(%q<classifier>, [">= 1.3.1"])
s.add_dependency(%q<maruku>, [">= 0.5.9"]) s.add_dependency(%q<maruku>, [">= 0.5.9"])
@ -100,7 +124,7 @@ Gem::Specification.new do |s|
s.add_dependency(%q<open4>, [">= 0.9.6"]) s.add_dependency(%q<open4>, [">= 0.9.6"])
end end
else else
s.add_dependency(%q<RedCloth>, ["= 4.1.0"]) s.add_dependency(%q<RedCloth>, [">= 4.2.1"])
s.add_dependency(%q<liquid>, [">= 1.9.0"]) s.add_dependency(%q<liquid>, [">= 1.9.0"])
s.add_dependency(%q<classifier>, [">= 1.3.1"]) s.add_dependency(%q<classifier>, [">= 1.3.1"])
s.add_dependency(%q<maruku>, [">= 0.5.9"]) s.add_dependency(%q<maruku>, [">= 0.5.9"])