diff --git a/CHANGELOG b/CHANGELOG index 1629b60..fc58904 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ += 2.3.1 [2010-03-19] +- Fixed bug where custom attribute writer method for date/times were being overriden + = 2.3.0 [2010-02-04] - Backwards incompatible change to :equal_to option. Fixed error message clash with :equal_to option which exists in Rails already. Option is now :is_at. - Fixed I18n support so it returns missing translation message instead of error diff --git a/lib/validates_timeliness/version.rb b/lib/validates_timeliness/version.rb index 791073f..4e1693b 100644 --- a/lib/validates_timeliness/version.rb +++ b/lib/validates_timeliness/version.rb @@ -1,3 +1,3 @@ module ValidatesTimeliness - VERSION = "2.3.0" + VERSION = "2.3.1" end diff --git a/validates_timeliness.gemspec b/validates_timeliness.gemspec index 1cad36c..cebcbaf 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 = "2.3.0" + s.version = "2.3.1" 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{2010-02-04} + s.date = %q{2010-03-19} 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"]