diff --git a/CHANGELOG.md b/CHANGELOG.md index bbed29e..de503ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ - Enables the parsing of elements defined in another namespace in Person constructs [`#91`](https://github.com/rust-syndication/atom/pull/91) - Update `quick-xml` to `0.38` [`#92`](https://github.com/rust-syndication/atom/pull/92) - Bump MSRV (Minimum Supported Rust Version) from 1.57.0 to 1.83.0 +- Replace `Never` type from the `never` crate with `Infallible` from std [`#93`](https://github.com/rust-syndication/atom/pull/93) +- Update `quick-xml` to `0.39` [`#94`](https://github.com/rust-syndication/atom/pull/94) ## 0.12.7 - 2025-02-16 diff --git a/Cargo.toml b/Cargo.toml index 2726532..8ca268d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.83" [dependencies] diligent-date-parser = "0.1.3" -quick-xml = { version = "0.38", features = ["encoding"] } +quick-xml = { version = "0.39", features = ["encoding"] } chrono = { version = "0.4", default-features = false, features = ["alloc"] } derive_builder = { version = "0.20", optional = true } serde = { version = "1.0", optional = true, features = ["derive"] }