# Changelog ## Unreleased ## v0.2.1 - Added: Crate metadata to guide docs.rs documentation generation. - Added: Feature "full" which enables all features. ## v0.2.0 - Changed(breaking): No features are enabled by default. Opt in to each extension trait with e.g. `type-toppings = { version = "0.2.0", features = ["iterator"] }`. - Added: `IteratorExt::join_as_strings` - Converts each element of the iterator to a string and joins them into a single string, separated by the specified separator. ## v0.1.1 - Changed: `ResultExt::expect_with()` and `ResultExt::expect_or_report_with()` take a closure that now returns `impl AsRef` rather than `&str`. This means a `String` can be returned, which enables use of the `format` macro in the closure. ## v0.1.0 - Initial release