Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
blackwinter committed Oct 22, 2012
1 parent 33a9d47 commit d3ee343
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
== 0.3.2 [unreleased]
== 0.4.0 [2012-10-22]

* Heavy refactoring to better support monkey patching.
* Fixed issue when a number is used as a tag. (Fabrice Rossi)

== 0.3.1 [2012-05-24]
Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ end

begin
require 'jekyll/testtasks/rake'
rescue LoadError
warn "Please install the `jekyll-testtasks' gem."
rescue LoadError => err
warn "Please install the `jekyll-testtasks' gem. (#{err})"
end
6 changes: 3 additions & 3 deletions jekyll-tagging.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@

Gem::Specification.new do |s|
s.name = "jekyll-tagging"
s.version = "0.3.1"
s.version = "0.4.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Arne Eilermann", "Jens Wille"]
s.date = "2012-05-24"
s.date = "2012-10-22"
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.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.3.1)", "--main", "ChangeLog"]
s.rdoc_options = ["--charset", "UTF-8", "--line-numbers", "--all", "--title", "jekyll-tagging Application documentation (v0.4.0)", "--main", "ChangeLog"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.24"
s.summary = "Jekyll plugin to automatically generate a tag cloud and tag pages."
Expand Down
4 changes: 2 additions & 2 deletions lib/jekyll/tagging/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ module Tagging
module Version

MAJOR = 0
MINOR = 3
TINY = 1
MINOR = 4
TINY = 0

class << self

Expand Down

1 comment on commit d3ee343

@pattex
Copy link
Owner

@pattex pattex commented on d3ee343 Oct 29, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks a lot! \o/

Please sign in to comment.