From f95700266b1e48e24f446ab4c499e1555601c8a5 Mon Sep 17 00:00:00 2001 From: Mingun Date: Mon, 24 Jul 2023 00:02:26 +0500 Subject: [PATCH] Release v0.30.0 --- Cargo.toml | 2 +- Changelog.md | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index c68c611b..805607bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "quick-xml" -version = "0.29.0" +version = "0.30.0" description = "High performance xml reader and writer" edition = "2018" diff --git a/Changelog.md b/Changelog.md index aff37572..052697c2 100644 --- a/Changelog.md +++ b/Changelog.md @@ -12,6 +12,15 @@ ### New Features +### Bug Fixes + +### Misc Changes + + +## 0.30.0 -- 2023-07-23 + +### New Features + - [#609]: Added `Writer::write_serializable` to provide the capability to serialize arbitrary types using serde when using the lower-level `Writer` API. - [#615]: Added ability to set entity resolver when deserialize using borrowing reader. @@ -23,7 +32,6 @@ ### Misc Changes - [#604]: https://github.com/tafia/quick-xml/issue/604 [#609]: https://github.com/tafia/quick-xml/pull/609 [#615]: https://github.com/tafia/quick-xml/pull/615