|
4 | 4 |
|
5 | 5 | ### Features |
6 | 6 |
|
7 | | -* Allow users to customize colors. ([#107], [042e8ec]) |
| 7 | +* You can now customize the colors that SuperDiff uses |
| 8 | + by adding this to your test setup: |
| 9 | + |
| 10 | + ``` ruby |
| 11 | + SuperDiff.configure do |config| |
| 12 | + config.actual_color = :green |
| 13 | + config.expected_color = :red |
| 14 | + config.border_color = :yellow |
| 15 | + config.header_color = :yellow |
| 16 | + end |
| 17 | + ``` |
| 18 | + |
| 19 | + ([#107], [042e8ec]) |
| 20 | + |
| 21 | +[#107]: https://github.com/mcmire/super_diff/pull/107 |
| 22 | +[042e8ec]: https://github.com/mcmire/super_diff/commit/042e8ecda282cd8a3d436b3bf2c0aded76187db2 |
8 | 23 |
|
9 | 24 | ### Bug fixes |
10 | 25 |
|
11 | 26 | * Resolve compatibility issues with RSpec 3.10. ([#114]) |
12 | 27 | * Fix diffs involving `contain_exactly` and `a_collection_containing_exactly` |
13 | 28 | so that if there are extra items in the actual value, |
14 | 29 | they are shown with `+`s. ([#106]) |
15 | | -* Fix reliability issues with CI. |
16 | | -* Fix `rake spec` so that it works when run locally again. |
17 | 30 |
|
18 | | -[#107]: https://github.com/mcmire/super_diff/pull/107 |
19 | | -[042e8ec]: https://github.com/mcmire/super_diff/commit/042e8ecda282cd8a3d436b3bf2c0aded76187db2 |
20 | 31 | [#114]: https://github.com/mcmire/super_diff/pull/114 |
21 | 32 | [#106]: https://github.com/mcmire/super_diff/pull/106 |
22 | 33 |
|
| 34 | +### Other notable changes |
| 35 | + |
| 36 | +* Fix reliability issues with CI. |
| 37 | +* Fix `rake spec` so that it works when run locally again. |
| 38 | +* SuperDiff is now being tested against Ruby 3.0. ([#118]) |
| 39 | + |
| 40 | +[#118]: https://github.com/mcmire/super_diff/pull/118 |
| 41 | + |
23 | 42 | ## 0.5.3 - 2020-12-21 |
24 | 43 |
|
25 | 44 | ### Bug fixes |
|
0 commit comments