v0.6.0-preview6
Pre-release
Pre-release
What's Changed
This version has two important and impactful breaking changes.
- "Visitors" for deserialization are no longer passed as generic parameters in
IDeserializer.Deserialize*
. If you implementedIDeserializer
, you will need to change all your methods to takeIDeserializeVisitor<T>
instead. - The
IDeserialize.Deserialize
method now takes an interface instead of a constrained generic parameter.
- Use boxed interface visitors instead of constrained generics by @agocke in #159
- Remove constrained generic from Deserialize by @agocke in #160
- Bump version to preview 6 by @agocke in #161
Full Changelog: v0.6.0-preview5...v0.6.0-preview6