Merge pull request #699 from DatabaseCleaner/feature/relax-dependency

Feature/relax dependency
This commit is contained in:
Ernesto Tagwerker 2023-03-10 14:00:20 -05:00 committed by GitHub
commit 64e2ef7ba0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,10 @@
== Development (unreleased)
== 2.0.2 2023-03-10
== Bugfixes
* Dependency configuration -- relax dependencies with database_cleaner-active_record: https://github.com/DatabaseCleaner/database_cleaner/pull/699
== 2.0.1 2021-02-04
== Bugfixes

View File

@ -16,5 +16,5 @@ Gem::Specification.new do |spec|
spec.files = ["lib/database_cleaner.rb"]
spec.require_paths = ["lib"]
spec.add_dependency "database_cleaner-active_record", "~>2.0.0"
spec.add_dependency "database_cleaner-active_record", ">= 2", "< 3"
end

View File

@ -1,3 +1,3 @@
module DatabaseCleaner
VERSION = "2.0.1"
VERSION = "2.0.2"
end