Skip to content

Commit

Permalink
ignore migration directories in multi database monoliths (#227)
Browse files Browse the repository at this point in the history
  • Loading branch information
desheikh committed Mar 25, 2024
1 parent 99eed31 commit bd21f53
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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)
Expand Down
2 changes: 1 addition & 1 deletion core.yml
Expand Up @@ -26,7 +26,7 @@ AllCops:
- "bin/**/*"
- "data/**/*"
- "db/data/**/*"
- "db/migrate/**/*"
- "db/*migrate/**/*"
- "db/schema.rb"
- "gemfiles/**/*"
- "log/**/*"
Expand Down
2 changes: 1 addition & 1 deletion 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

0 comments on commit bd21f53

Please sign in to comment.