diff --git a/CHANGELOG b/CHANGELOG index d168154..d1fe331 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ += 1.1.2 [2009-01-12] +- Fixed bugs + - matcher failing for custom error message without interpolation keys using I18n + - validator custom error messages not being extracted + = 1.1.1 [2009-01-03] - Fixed bug in matcher for options local variable diff --git a/Rakefile b/Rakefile index c0657f7..50b81f2 100644 --- a/Rakefile +++ b/Rakefile @@ -5,7 +5,7 @@ require 'date' require 'spec/rake/spectask' GEM = "validates_timeliness" -GEM_VERSION = "1.1.1" +GEM_VERSION = "1.1.2" AUTHOR = "Adam Meehan" EMAIL = "adam.meehan@gmail.com" HOMEPAGE = "http://github.com/adzap/validates_timeliness" diff --git a/validates_timeliness.gemspec b/validates_timeliness.gemspec index b172fca..7aa0a97 100644 --- a/validates_timeliness.gemspec +++ b/validates_timeliness.gemspec @@ -2,12 +2,12 @@ Gem::Specification.new do |s| s.name = %q{validates_timeliness} - s.version = "1.1.1" + s.version = "1.1.2" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Adam Meehan"] s.autorequire = %q{validates_timeliness} - s.date = %q{2009-01-03} + s.date = %q{2009-01-12} s.description = %q{Date and time validation plugin for Rails 2.x which allows custom formats} s.email = %q{adam.meehan@gmail.com} s.extra_rdoc_files = ["README.rdoc", "LICENSE", "TODO", "CHANGELOG"]