diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index 448de25..f380305 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -1,3 +1,6 @@ += 3.0.14 [2012-08-23] +* Fix for using validates :timeliness => {} form to correctly add attributes to timeliness validated attributes. + = 3.0.13 [2012-08-21] * Fix ActiveRecord issues with using plugin parser by using old way of caching values. * Allow any ActiveRecord non-column attribute to be validated diff --git a/lib/validates_timeliness/version.rb b/lib/validates_timeliness/version.rb index f95835e..9865e5d 100644 --- a/lib/validates_timeliness/version.rb +++ b/lib/validates_timeliness/version.rb @@ -1,3 +1,3 @@ module ValidatesTimeliness - VERSION = '3.0.13' + VERSION = '3.0.14' end diff --git a/validates_timeliness.gemspec b/validates_timeliness.gemspec index dc2704e..a00d6e3 100644 --- a/validates_timeliness.gemspec +++ b/validates_timeliness.gemspec @@ -12,7 +12,7 @@ Gem::Specification.new do |s| s.homepage = %q{http://github.com/adzap/validates_timeliness} s.require_paths = ["lib"] - s.files = `git ls-files`.split("\n") - %w{ .gitignore .rspec Gemfile Gemfile.lock autotest/discover.rb } + s.files = `git ls-files`.split("\n") - %w{ .gitignore .rspec Gemfile Gemfile.lock autotest/discover.rb Appraisals Travis.yml } - Dir['gemsfiles/*'] s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "LICENSE"]