From b93d2be2844c1d77708c863ac421df8c1acf791a Mon Sep 17 00:00:00 2001 From: fatkodima Date: Mon, 9 Dec 2024 12:18:15 +0200 Subject: [PATCH] Release 0.21.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 6ab84c8..e5370fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## master (unreleased) +## 0.21.0 (2024-12-09) + - Fix `add_foreign_key` when referencing same table via different columns - Make `validate_not_null_constraint`, `remove_foreign_key` and `remove_check_constraint` idempotent diff --git a/Gemfile.lock b/Gemfile.lock index 6a756c0..0d7c278 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - online_migrations (0.20.2) + online_migrations (0.21.0) activerecord (>= 6.1) GEM diff --git a/lib/online_migrations/version.rb b/lib/online_migrations/version.rb index 2061b67..955997b 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.20.2" + VERSION = "0.21.0" end