From 55c0091efa094ea1c69ef9dd75c5b41ceac87ba8 Mon Sep 17 00:00:00 2001 From: Andrey Kutejko Date: Mon, 27 Mar 2023 18:45:08 +0200 Subject: [PATCH] Update quick-xml to 0.28 --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 507f99039c..9545cc67ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## 2.x.x - Unreleased +## 2.0.3 - 2023-03-27 + +- Upgrade `quick_xml` to `0.28` [`#146`](https://github.com/rust-syndication/rss/pull/146) + ## 2.0.2 - 2023-01-14 - Upgrade `quick_xml` to `0.27`, `derive_builder` to `0.12`, and `atom_syndication` to `0.12` [`#143`](https://github.com/rust-syndication/rss/pull/143) diff --git a/Cargo.toml b/Cargo.toml index 88d86c468e..22b9f0c43e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ with-serde = ["serde", "atom_syndication/with-serde"] atom = ["atom_syndication"] [dependencies] -quick-xml = { version = "0.27", features = ["encoding"] } +quick-xml = { version = "0.28", features = ["encoding"] } derive_builder = { version = "0.12", optional = true } never = { version = "0.1", optional = true } chrono = { version = "0.4", optional = true, default-features = false, features = ["alloc"] }