diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index 2b62015..d3a13e0 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -1,3 +1,7 @@ += 3.0.8 [2011-12-24] +* Remove deprecated InstanceMethods module when using AS::Concern +* Update Mongoid shim for v2.3 compatability. + = 3.0.7 [2011-09-21] * Fix ActiveRecord before_type_cast extension for non-dirty attributes. * Don't override AR before_type_cast for >= 3.1.0 which now has it's own implementation for date/time attributes. diff --git a/lib/validates_timeliness/version.rb b/lib/validates_timeliness/version.rb index 06060be..380321e 100644 --- a/lib/validates_timeliness/version.rb +++ b/lib/validates_timeliness/version.rb @@ -1,3 +1,3 @@ module ValidatesTimeliness - VERSION = '3.0.7' + VERSION = '3.0.8' end diff --git a/validates_timeliness.gemspec b/validates_timeliness.gemspec index c8325d4..b2cd12c 100644 --- a/validates_timeliness.gemspec +++ b/validates_timeliness.gemspec @@ -16,5 +16,5 @@ Gem::Specification.new do |s| s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "LICENSE"] - s.add_runtime_dependency(%q, ["~> 0.3.3"]) + s.add_runtime_dependency(%q, ["~> 0.3.4"]) end