From 6a0ad6068c30a89904eb6d3817aba8809cca6ecc Mon Sep 17 00:00:00 2001 From: fatkodima Date: Tue, 7 May 2024 19:50:00 +0300 Subject: [PATCH] Release 0.18.0 --- 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 6a55c43..03efb1f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## master (unreleased) +## 0.18.0 (2024-05-07) + - Fix setting `started_at`/`finished_at` for parents of sharded background schema migrations - Improve retrying of failed sharded background migrations - Fix a bug when retried background data migration can not start diff --git a/Gemfile.lock b/Gemfile.lock index 8f92b7a..650cb87 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - online_migrations (0.17.1) + online_migrations (0.18.0) activerecord (>= 6.1) GEM diff --git a/lib/online_migrations/version.rb b/lib/online_migrations/version.rb index 226e23d..fd5d2b8 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.17.1" + VERSION = "0.18.0" end