### 3.3.0 / 2015-06-12
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.2.2...v3.3.0)
Enhancements:
* Improve formatting of arrays and hashes in failure messages so they
use our custom formatting of matchers, time objects, etc.
(Myron Marston, Nicholas Chmielewski, #205)
* Use improved formatting for diffs as well. (Nicholas Chmielewski, #205)
Bug Fixes:
* Fix `FuzzyMatcher` so that it checks `expected == actual` rather than
`actual == expected`, which avoids errors in situations where the
`actual` object's `==` is improperly implemented to assume that only
objects of the same type will be given. This allows rspec-mocks'
`anything` to match against objects with buggy `==` definitions.
(Myron Marston, #193)