From e7f182b85db391e32ecd6c73adf118b3a86167ce Mon Sep 17 00:00:00 2001 From: Andrey Kutejko Date: Sun, 10 May 2026 14:01:29 +0200 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbed29e..6c3a3a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - 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) ## 0.12.7 - 2025-02-16 From b4259e6841ac5df91d6a99661cd346b3e245c72d Mon Sep 17 00:00:00 2001 From: Andrey Kutejko Date: Sun, 10 May 2026 14:03:43 +0200 Subject: [PATCH 2/2] Update quick-xml to 0.39 --- CHANGELOG.md | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c3a3a1..de503ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ - 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"] }