serde v1.0.101 Release Notes

Release Date: 2019-09-16 // over 4 years ago

    Report errors on malformed serde attributes, like #[serde(rename =)] -- the compiler used to reject these itself, but when the compiler relaxed its requirements on attribute syntax these malformed attributes began silently being ignored by serde_derive

    ⚠ Eliminate unused variable warning when using skip_serializing inside a tuple variant of an adjacently tagged enum (#1617, thanks @arilotter)

    👌 Support skip attribute inside of newtype variants (#1622, thanks @Xaeroxe)