-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0000394
commit 15c6e75
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,28 @@ | ||
## [Unreleased] | ||
|
||
## [0.1.1] - 2025-02-21 | ||
## [0.2.0] - 2025-02-21 | ||
|
||
- Allow comparing a specific commit | ||
```sh | ||
rails-diff file Dockerfile --commit 3e7640 | ||
``` | ||
|
||
- Allow failing the command when there are diffs | ||
|
||
```sh | ||
rails-diff file Dockerfile --fail-on-diff | ||
``` | ||
|
||
- Return no output when there's no diff | ||
|
||
M## [0.1.1] - 2025-02-21 | ||
|
||
- Fix generator differ | ||
|
||
## [0.1.0] - 2025-02-21 | ||
|
||
- Initial release | ||
|
||
[0.2.0]: /~https://github.com/matheusrich/rails-diff/releases/tag/v0.2.0 | ||
[0.1.1]: /~https://github.com/matheusrich/rails-diff/releases/tag/v0.1.1 | ||
[0.1.0]: /~https://github.com/matheusrich/rails-diff/releases/tag/v0.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
module Rails | ||
module Diff | ||
VERSION = "0.1.1" | ||
VERSION = "0.2.0" | ||
end | ||
end |