serde-yaml v0.8.0 Release Notes

Release Date: 2018-08-22 // over 5 years ago

    ⬇️ Reduce compile time of Deserialize impls by instantiating fewer Visitor methods when we know the type of data expected (#96)

    💥 This is potentially a breaking change for some handwritten Deserialize impls. For example a Deserialize impl that invokes Deserializer::deserialize_string would no longer deserialize successfully from anything but a string in the input data, even if the Visitor impl otherwise supports types other than string. Deserialize impls that support deserializing from multiple different Serde data types need to use Deserializer::deserialize_any instead.

    Preserve integers as integers when serialized by serde_yaml::to_value (#98)