diff --git a/CHANGELOG.md b/CHANGELOG.md index fb08857..2a3b317 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## master (unreleased) +## 0.19.3 (2024-08-09) + - Fix idempotency for `add_index`/`remove_index` for expression indexes ## 0.19.2 (2024-07-09) diff --git a/Gemfile.lock b/Gemfile.lock index 88e2411..2ba5f12 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - online_migrations (0.19.2) + online_migrations (0.19.3) activerecord (>= 6.1) GEM diff --git a/lib/online_migrations/version.rb b/lib/online_migrations/version.rb index 6644024..e228570 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.2" + VERSION = "0.19.3" end