diff --git a/crates/toml/CHANGELOG.md b/crates/toml/CHANGELOG.md index 2ea9fe05..4cd13e82 100644 --- a/crates/toml/CHANGELOG.md +++ b/crates/toml/CHANGELOG.md @@ -7,6 +7,10 @@ The format is based on [Keep a Changelog]. ## [Unreleased] - ReleaseDate +### Fixes + +- *(parser)* Error on invalid days of month, accounting for leap years + ## [0.8.3] - 2023-10-23 ## [0.8.2] - 2023-10-03 diff --git a/crates/toml_datetime/CHANGELOG.md b/crates/toml_datetime/CHANGELOG.md index b660efe9..461f6582 100644 --- a/crates/toml_datetime/CHANGELOG.md +++ b/crates/toml_datetime/CHANGELOG.md @@ -7,6 +7,11 @@ The format is based on [Keep a Changelog]. ## [Unreleased] - ReleaseDate +### Fixes + +- Allow leapseconds in `FromStr` +- Error on invalid days of month, accounting for leap years, in `FromStr` + ## [0.6.4] - 2023-10-23 ## [0.6.3] - 2023-06-24 diff --git a/crates/toml_edit/CHANGELOG.md b/crates/toml_edit/CHANGELOG.md index 481d1d68..d33f922b 100644 --- a/crates/toml_edit/CHANGELOG.md +++ b/crates/toml_edit/CHANGELOG.md @@ -7,6 +7,10 @@ The format is based on [Keep a Changelog]. ## [Unreleased] - ReleaseDate +### Fixes + +- *(parser)* Error on invalid days of month, accounting for leap years + ## [0.20.3] - 2023-10-23 ### Features