mirror of
https://github.com/DatabaseCleaner/database_cleaner
synced 2023-03-27 23:22:03 -04:00
Merge pull request #699 from DatabaseCleaner/feature/relax-dependency
Feature/relax dependency
This commit is contained in:
commit
64e2ef7ba0
3 changed files with 7 additions and 2 deletions
|
@ -1,5 +1,10 @@
|
||||||
== Development (unreleased)
|
== 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
|
== 2.0.1 2021-02-04
|
||||||
|
|
||||||
== Bugfixes
|
== Bugfixes
|
||||||
|
|
|
@ -16,5 +16,5 @@ Gem::Specification.new do |spec|
|
||||||
spec.files = ["lib/database_cleaner.rb"]
|
spec.files = ["lib/database_cleaner.rb"]
|
||||||
spec.require_paths = ["lib"]
|
spec.require_paths = ["lib"]
|
||||||
|
|
||||||
spec.add_dependency "database_cleaner-active_record", "~>2.0.0"
|
spec.add_dependency "database_cleaner-active_record", ">= 2", "< 3"
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
module DatabaseCleaner
|
module DatabaseCleaner
|
||||||
VERSION = "2.0.1"
|
VERSION = "2.0.2"
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue