From 5483706a9fb875dbb17ae489f6e53ea719a4d8b6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Jan 2026 10:10:07 +0000 Subject: [PATCH] chore: release v0.0.10 --- Cargo.lock | 6 +++--- Cargo.toml | 8 ++++---- xmlity-quick-xml/CHANGELOG.md | 10 ++++++++++ xmlity-quick-xml/Cargo.toml | 2 +- xmlity/CHANGELOG.md | 7 +++++++ 5 files changed, 25 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 16632cc..3ceaf21 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -945,7 +945,7 @@ checksum = "a62ce76d9b56901b19a74f19431b0d8b3bc7ca4ad685a746dfd78ca8f4fc6bda" [[package]] name = "xmlity" -version = "0.0.9" +version = "0.0.10" dependencies = [ "pretty_assertions", "rstest", @@ -955,7 +955,7 @@ dependencies = [ [[package]] name = "xmlity-derive" -version = "0.0.9" +version = "0.0.10" dependencies = [ "darling", "proc-macro2", @@ -965,7 +965,7 @@ dependencies = [ [[package]] name = "xmlity-quick-xml" -version = "0.0.9" +version = "0.0.10" dependencies = [ "criterion", "ntest", diff --git a/Cargo.toml b/Cargo.toml index 3e7cd1e..e4869eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["xmlity", "xmlity-derive", "xmlity-quick-xml"] [workspace.package] -version = "0.0.9" +version = "0.0.10" edition = "2021" rust-version = "1.82.0" authors = ["Lukas Friman "] @@ -17,6 +17,6 @@ exclude = ["xmlity-book/"] thiserror = "^2.0.4" pretty_assertions = "^1.4.1" rstest = "^0.25.0" -xmlity-derive = { version = "^0.0.9", path = "./xmlity-derive" } -xmlity = { version = "^0.0.9", path = "./xmlity" } -xmlity-quick-xml = { version = "^0.0.9", path = "./xmlity-quick-xml" } +xmlity-derive = { version = "^0.0.10", path = "./xmlity-derive" } +xmlity = { version = "^0.0.10", path = "./xmlity" } +xmlity-quick-xml = { version = "^0.0.10", path = "./xmlity-quick-xml" } diff --git a/xmlity-quick-xml/CHANGELOG.md b/xmlity-quick-xml/CHANGELOG.md index 6c4cc40..4c86ca5 100644 --- a/xmlity-quick-xml/CHANGELOG.md +++ b/xmlity-quick-xml/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.10](https://github.com/lukasfri/xmlity/compare/xmlity-quick-xml-v0.0.9...xmlity-quick-xml-v0.0.10) - 2026-01-16 + +### Added + +- *(types)* Adds method `value` and `into_value` to easily get values from `XmlRoot`. ([#153](https://github.com/lukasfri/xmlity/pull/153)) + +### Other + +- *(deps)* bump quick-xml from 0.38.0 to 0.39.0 ([#152](https://github.com/lukasfri/xmlity/pull/152)) + ## [0.0.9](https://github.com/lukasfri/xmlity/compare/xmlity-quick-xml-v0.0.8...xmlity-quick-xml-v0.0.9) - 2025-12-26 ### Added diff --git a/xmlity-quick-xml/Cargo.toml b/xmlity-quick-xml/Cargo.toml index e09b6ad..3277b12 100644 --- a/xmlity-quick-xml/Cargo.toml +++ b/xmlity-quick-xml/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "xmlity-quick-xml" description = "XMLity implementation of quick-xml." -version = "0.0.9" +version = "0.0.10" edition.workspace = true rust-version.workspace = true authors.workspace = true diff --git a/xmlity/CHANGELOG.md b/xmlity/CHANGELOG.md index 4e4432a..56303a9 100644 --- a/xmlity/CHANGELOG.md +++ b/xmlity/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.0.10](https://github.com/lukasfri/xmlity/compare/xmlity-v0.0.9...xmlity-v0.0.10) - 2026-01-16 + +### Added + +- *(types)* Adds method `value` and `into_value` to easily get values from `XmlRoot`. ([#153](https://github.com/lukasfri/xmlity/pull/153)) +- [**breaking**] Implement `Display`, `PartialEq<...Buf>` and `FromStr` for basic name types ([#150](https://github.com/lukasfri/xmlity/pull/150)) + ## [0.0.9](https://github.com/lukasfri/xmlity/compare/xmlity-v0.0.8...xmlity-v0.0.9) - 2025-12-26 ### Added