From c0f7afc8f7527c07261b808d3df4fa2f71ee6468 Mon Sep 17 00:00:00 2001 From: Andrei Kaleshka Date: Wed, 15 Jan 2025 13:32:23 +0100 Subject: [PATCH] Release v0.8.1 --- CHANGELOG.md | 8 ++++++++ Gemfile.lock | 2 +- lib/actual_db_schema/version.rb | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bcf60e..3a57de8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [0.8.1] - 2025-01-15 + +- Support for multiple database schemas, ensuring compatibility with multi-tenant applications using the apartment gem or similar solutions +- DSL for configuring the gem, simplifying setup and customization +- Rake task added to initialize the gem +- Improved the post-checkout git hook to run only when switching branches, reducing unnecessary executions during file checkouts +- Fixed the changelog link in the gemspec, ensuring Rubygems points to the correct file and the link works + ## [0.8.0] - 2024-12-30 - Enhanced Console Visibility: Automatically rolled-back phantom migrations now provide clearer and more visible logs in the console - Git Hooks for Branch Management: Introduced hooks that automatically rollback phantom migrations after checking out a branch. Additionally, the schema migration rake task can now be executed automatically upon branch checkout diff --git a/Gemfile.lock b/Gemfile.lock index fc109f8..558a264 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - actual_db_schema (0.8.0) + actual_db_schema (0.8.1) activerecord activesupport csv diff --git a/lib/actual_db_schema/version.rb b/lib/actual_db_schema/version.rb index 98d76fd..31b0668 100644 --- a/lib/actual_db_schema/version.rb +++ b/lib/actual_db_schema/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module ActualDbSchema - VERSION = "0.8.0" + VERSION = "0.8.1" end