Skip to content

Commit

Permalink
Bump version to 0.10.0 (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmire authored Mar 26, 2023
1 parent 31623d7 commit afc80ab
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# Changelog

## 0.10.0 - 2023-03-26

### BREAKING CHANGES

- Drop support for Ruby 2.5, 2.6, and 2.7 as well as Rails 5.0, 5.1, and 5.2,
as they have reached (or are about to reach) end-of-life. To use this gem,
you must use at least Ruby 3.x, and if you're using Rails, Rails 6.x. ([#187],
[#190])

### Fixes

- Fix diffing logic for `include` matcher so that it knows how to compare fuzzy
matcher objects with other kinds of objects. ([#156])
- Add a `key_enabled` configuration option for disabling the key/legend in the
diff output. ([#166])
- Add a `color_enabled` configuration option for disabling color. ([#138])
- Update `super_diff/rails` (and, by extension, `super_diff/rspec-rails`) so
that the ActiveRecord-specific integration isn't loaded if ActiveRecord isn't
available. ([#188])

[#187]: https://github.com/mcmire/super_diff/pull/187
[#190]: https://github.com/mcmire/super_diff/pull/190
[#156]: https://github.com/mcmire/super_diff/pull/156
[#166]: https://github.com/mcmire/super_diff/pull/166
[#138]: https://github.com/mcmire/super_diff/pull/138
[#188]: https://github.com/mcmire/super_diff/pull/188

## 0.9.0 - 2022-04-25

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion lib/super_diff/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SuperDiff
VERSION = "0.9.0".freeze
VERSION = "0.10.0".freeze
end

0 comments on commit afc80ab

Please sign in to comment.