diff --git a/serde_with/CHANGELOG.md b/serde_with/CHANGELOG.md index 84c68f17..e04a90c3 100644 --- a/serde_with/CHANGELOG.md +++ b/serde_with/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Added + +* Add newline separator by @jayvdb (#777) + + The `UnixLineSeparator` and `DosLineSeparator` can be used together with `StringWithSeparator`. + +### Fixed + +* Proper handling of `cfg_attr` in the `serde_as` macro by @sivizius (#782) + + This allows to parse more valid forms of the `cfg_attr` macro, including multiple values and attribute that do not follow the `key = value` schema. + ## [3.9.0] - 2024-07-14 ### Added diff --git a/serde_with_macros/CHANGELOG.md b/serde_with_macros/CHANGELOG.md index b95c9d87..c11f8c83 100644 --- a/serde_with_macros/CHANGELOG.md +++ b/serde_with_macros/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Fixed + +* Proper handling of `cfg_attr` in the `serde_as` macro by @sivizius (#782) + + This allows to parse more valid forms of the `cfg_attr` macro, including multiple values and attribute that do not follow the `key = value` schema. + ## [3.9.0] - 2024-07-14 No changes.