From d632efd04fd8390a587a2e73d3fa098f0dcaecfb Mon Sep 17 00:00:00 2001 From: fatkodima Date: Tue, 9 Jul 2024 16:09:05 +0300 Subject: [PATCH] Release 0.19.2 --- CHANGELOG.md | 2 ++ Gemfile.lock | 2 +- lib/online_migrations/version.rb | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b013087..c599fa5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## master (unreleased) +## 0.19.2 (2024-07-09) + - Fix `add_reference_concurrently` to be idempotent when adding a foreign key - Fix `enqueue_background_data_migration` to be idempotent diff --git a/Gemfile.lock b/Gemfile.lock index 00dac56..88e2411 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - online_migrations (0.19.1) + online_migrations (0.19.2) activerecord (>= 6.1) GEM diff --git a/lib/online_migrations/version.rb b/lib/online_migrations/version.rb index 6db42b1..6644024 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.1" + VERSION = "0.19.2" end