CHANGELOG.md in object_identifier-0.5.0 vs CHANGELOG.md in object_identifier-0.6.0
- old
+ new
@@ -1,4 +1,10 @@
+### 0.6.0 - 2023-01-09
+- Internal refactoring for more Object-Oriented goodness.
+
+#### BREAKING
+- Refactor `ObjectIdentifier::Identifier` to just `ObjectIdentifier`. This has no effect on instance method usage (e.g. `<my_object>.identify(...)`). But if any manual invocations were made (e.g. `ObjectIdentifier::Identifier.call(...)`) then they will need to be updated to `ObjectIdentifier.call(...)` (or just `ObjectIdentifier.(...)`, per your own style guide).
+
### 0.5.0 - 2023-01-04
- Add support for defining customer Formatters.
- Add ObjectInspector::Configuration#formatter_class setting for overriding the default Formatter. See the README for more.
- Add a benchmarking script for comparing performance of formatters. See the README for more.