diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a3a814..3b1b6bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## 7.4.4 - 2024-02-12 +### Changed +- Ignore all migration folders in multi database + ## 7.4.3 - 2024-02-12 ### Changed - Updated rspec dependency diff --git a/Gemfile.lock b/Gemfile.lock index 3ea1a66..faced47 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ws-style (7.4.3) + ws-style (7.4.4) rubocop-rspec (>= 2.2.0) rubocop-vendor (>= 0.11) standard (>= 1.30.1) diff --git a/core.yml b/core.yml index 2078a09..17720f6 100644 --- a/core.yml +++ b/core.yml @@ -26,7 +26,7 @@ AllCops: - "bin/**/*" - "data/**/*" - "db/data/**/*" - - "db/migrate/**/*" + - "db/*migrate/**/*" - "db/schema.rb" - "gemfiles/**/*" - "log/**/*" diff --git a/lib/ws/style/version.rb b/lib/ws/style/version.rb index a74cf50..3932248 100644 --- a/lib/ws/style/version.rb +++ b/lib/ws/style/version.rb @@ -1,5 +1,5 @@ module Ws module Style - VERSION = '7.4.3'.freeze + VERSION = '7.4.4'.freeze end end