Skip to content

Commit

Permalink
release v2.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
botandrose-machine committed Jan 31, 2021
1 parent 77f89a0 commit 51fb215
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 3 additions & 1 deletion History.rdoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
== Development (unreleased)

== 2.0.0 2021-01-31

=== Changes
* Rename `url_whitelist` to `url_allowlist`
* Allowlist now supports regular expressions
Expand Down Expand Up @@ -27,7 +29,7 @@
* remove all deprecated code and get the specs passing again.
* Split off all adapter gems into their own repos: https://github.com/DatabaseCleaner/database_cleaner/pull/620

== 1.99.0.beta 2020-05-30
== 1.99.0 2021-01-31

== Changes
* Remove unnecessary dependency on database_cleaner-mongo from database_cleaner-mongoid: @botandrose
Expand Down
6 changes: 2 additions & 4 deletions database_cleaner.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ require_relative "./lib/database_cleaner/version"

Gem::Specification.new do |spec|
spec.name = "database_cleaner"
# FIXME temporarily hardcode to different version since core is at 2.0.0.beta2, but this gem only is at 2.0.0.beta
# spec.version = DatabaseCleaner::VERSION
spec.version = "2.0.0.beta"
spec.version = DatabaseCleaner::VERSION
spec.authors = ["Ben Mabey", "Ernesto Tagwerker", "Micah Geisel"]
spec.email = ["ernesto@ombulabs.com"]

Expand All @@ -18,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.beta2"
spec.add_dependency "database_cleaner-active_record", "~>2.0.0"
end
2 changes: 1 addition & 1 deletion lib/database_cleaner/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module DatabaseCleaner
VERSION = "2.0.0.beta2"
VERSION = "2.0.0"
end

0 comments on commit 51fb215

Please sign in to comment.