Compare commits

..

5 Commits

Author SHA1 Message Date
Adam Meehan
d0fcf754ec Update build to ruby 2.5.3 and fix sqlite 2019-02-09 12:15:58 +11:00
Adam Meehan
7233ff66dd v5.0.0.alpha4 2019-02-09 12:00:31 +11:00
Adam Meehan
f0ba09f278 relax timeliness dependency, assuming semver 2019-02-09 11:57:31 +11:00
Adam Meehan
80ee285b3a bump minimum timeliness version 2019-02-03 11:58:11 +11:00
Adam Meehan
cf20576253 readme version bump 2018-07-31 09:08:42 +10:00
6 changed files with 8 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ gemfile:
- gemfiles/rails_5_2.gemfile - gemfiles/rails_5_2.gemfile
rvm: rvm:
- "2.5.1" - "2.5.3"
script: 'bundle exec rspec' script: 'bundle exec rspec'

View File

@@ -1,5 +1,8 @@
= [UNRELEASED] = [UNRELEASED]
* Fix DateTimeSelect extension support (AquisTech) * Fix DateTimeSelect extension support (AquisTech)
* Relaxed Timeliness dependency version which allows for >= 0.4.0 with
threadsafety fix for use_us_formats and use_euro_formats for hot switching
in a request.
Breaking Changes Breaking Changes
* Update Multiparameter extension to use ActiveRecord type classes with multiparameter handling * Update Multiparameter extension to use ActiveRecord type classes with multiparameter handling

View File

@@ -8,5 +8,5 @@ gem 'rspec-rails', '~> 3.7'
gem 'timecop' gem 'timecop'
gem 'byebug' gem 'byebug'
gem 'appraisal' gem 'appraisal'
gem 'sqlite3' gem 'sqlite3', '~> 1.3.6'
gem 'nokogiri', '~> 1.8' gem 'nokogiri', '~> 1.8'

View File

@@ -30,7 +30,7 @@ If you a looking for the old version for Rails 4.x go here [https://github.com/a
== Installation == Installation
# in Gemfile # in Gemfile
gem 'validates_timeliness', '~> 5.0.0.alpha2' gem 'validates_timeliness', '~> 5.0.0.alpha3'
# Run bundler # Run bundler
$ bundle install $ bundle install

View File

@@ -1,3 +1,3 @@
module ValidatesTimeliness module ValidatesTimeliness
VERSION = '5.0.0.alpha3' VERSION = '5.0.0.alpha4'
end end

View File

@@ -17,5 +17,5 @@ Gem::Specification.new do |s|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "LICENSE"] s.extra_rdoc_files = ["README.rdoc", "CHANGELOG.rdoc", "LICENSE"]
s.add_runtime_dependency(%q<timeliness>, ["~> 0.3.8"]) s.add_runtime_dependency(%q<timeliness>, [">= 0.3.10", "< 1"])
end end