From 1ff8d41fc31734525737de8e0c375e78f5eac0ee Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 23 Oct 2023 11:50:13 -0500 Subject: [PATCH] docs: Update changelog --- crates/toml/CHANGELOG.md | 4 ++++ crates/toml_datetime/CHANGELOG.md | 5 +++++ crates/toml_edit/CHANGELOG.md | 4 ++++ 3 files changed, 13 insertions(+) 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