diff --git a/ChangeLog b/ChangeLog index 9cde03d..a20aedd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +== 0.2.1 [2012-05-24] + +* Added support for Jekyll::Site#add_payload (custom extension). + == 0.2.0 [2011-03-10] * Added support for pretty tag page URLs. diff --git a/README.rdoc b/README.rdoc index 95ec631..ddf517a 100644 --- a/README.rdoc +++ b/README.rdoc @@ -48,7 +48,7 @@ RubyGem:: === The MIT License -Copyright (c) 2010-2011 University of Cologne, +Copyright (c) 2010-2012 University of Cologne, Albertus-Magnus-Platz, 50923 Cologne, Germany Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/jekyll-tagging.gemspec b/jekyll-tagging.gemspec index 0c4af92..d696dc6 100644 --- a/jekyll-tagging.gemspec +++ b/jekyll-tagging.gemspec @@ -1,21 +1,21 @@ # -*- encoding: utf-8 -*- Gem::Specification.new do |s| - s.name = %q{jekyll-tagging} - s.version = "0.2.0" + s.name = "jekyll-tagging" + s.version = "0.2.1" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Arne Eilermann", "Jens Wille"] - s.date = %q{2011-03-10} - s.description = %q{Jekyll plugin to automatically generate a tag cloud and tag pages.} + s.date = "2012-05-24" + s.description = "Jekyll plugin to automatically generate a tag cloud and tag pages." s.email = ["eilermann@lavabit.com", "jens.wille@uni-koeln.de"] s.extra_rdoc_files = ["ChangeLog"] - s.files = ["lib/jekyll/tagging/version.rb", "lib/jekyll/tagging.rb", "ChangeLog", "Rakefile", "README.rdoc"] - s.homepage = %q{http://github.com/pattex/jekyll-tagging} - s.rdoc_options = ["--all", "--charset", "UTF-8", "--main", "ChangeLog", "--title", "jekyll-tagging Application documentation (v0.2.0)", "--line-numbers"] + s.files = ["lib/jekyll/tagging.rb", "lib/jekyll/tagging/version.rb", "README.rdoc", "ChangeLog", "Rakefile"] + s.homepage = "http://github.com/pattex/jekyll-tagging" + s.rdoc_options = ["--charset", "UTF-8", "--line-numbers", "--all", "--title", "jekyll-tagging Application documentation (v0.2.1)", "--main", "ChangeLog"] s.require_paths = ["lib"] - s.rubygems_version = %q{1.5.2} - s.summary = %q{Jekyll plugin to automatically generate a tag cloud and tag pages.} + s.rubygems_version = "1.8.24" + s.summary = "Jekyll plugin to automatically generate a tag cloud and tag pages." if s.respond_to? :specification_version then s.specification_version = 3 diff --git a/lib/jekyll/tagging/version.rb b/lib/jekyll/tagging/version.rb index f5ab58c..b1e9d79 100644 --- a/lib/jekyll/tagging/version.rb +++ b/lib/jekyll/tagging/version.rb @@ -6,7 +6,7 @@ module Version MAJOR = 0 MINOR = 2 - TINY = 0 + TINY = 1 class << self