From b3e235a8a165d65660f309bbba998740b3cba6a4 Mon Sep 17 00:00:00 2001 From: Adam Meehan Date: Wed, 21 Jan 2009 14:15:35 +1100 Subject: [PATCH] release 1.1.5 --- CHANGELOG | 3 +++ Rakefile | 2 +- validates_timeliness.gemspec | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b34a469..5b6ffee 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ += 1.1.5 [2009-01-21] +- Fixed regex for 'yy' format token which wasn't greedy enough for date formats ending with year when a datetime string parsed as date with a 4 digit year + = 1.1.4 [2009-01-13] - Make months names respect i18n in Formats diff --git a/Rakefile b/Rakefile index 24388c4..29eb5bb 100644 --- a/Rakefile +++ b/Rakefile @@ -5,7 +5,7 @@ require 'date' require 'spec/rake/spectask' GEM = "validates_timeliness" -GEM_VERSION = "1.1.4" +GEM_VERSION = "1.1.5" 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 73400df..9b4c084 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.4" + s.version = "1.1.5" 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-13} + s.date = %q{2009-01-21} 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"]