diff --git a/CHANGELOG.md b/CHANGELOG.md index a041f76..8349d40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## master (unreleased) +## 0.13.1 (2024-01-23) + - Fix calculation of batch ranges for background migration created with explicit ranges ## 0.13.0 (2024-01-22) diff --git a/Gemfile.lock b/Gemfile.lock index cca1924..952c30a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - online_migrations (0.13.0) + online_migrations (0.13.1) activerecord (>= 6.1) GEM diff --git a/lib/online_migrations/version.rb b/lib/online_migrations/version.rb index 57e617d..cf2be4e 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.13.0" + VERSION = "0.13.1" end