diff --git a/CHANGELOG.md b/CHANGELOG.md index 76061d2..58dc722 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## master (unreleased) +## 0.20.0 (2024-10-21) + - Enhance columns removal check to check indexes `where` and `include` options - Do not wait before running retried background migrations diff --git a/Gemfile.lock b/Gemfile.lock index 9e84dc3..80dd99c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - online_migrations (0.19.6) + online_migrations (0.20.0) activerecord (>= 6.1) GEM diff --git a/lib/online_migrations/version.rb b/lib/online_migrations/version.rb index 3837b53..3deb145 100644 --- a/lib/online_migrations/version.rb +++ b/lib/online_migrations/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module OnlineMigrations - VERSION = "0.19.6" + VERSION = "0.20.0" end