From 947769de15ff6c49fa2bee58a3f6de6f02109c18 Mon Sep 17 00:00:00 2001 From: Sebastian Detert Date: Wed, 6 Mar 2024 17:20:11 +0100 Subject: [PATCH] version 0.6.7 fixed empty struct names if parent and child elements have the same name. Kindly contributed by Saghm Rossi @saghm --- Cargo.toml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 718f30d..ffc6594 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xml_schema_generator" -version = "0.6.6" +version = "0.6.7" description = "Create Rust struct for given XML file, that allows to deserliaze the given XML using serde or vice versa" authors = ["Sebastian Detert "] edition = "2021" diff --git a/README.md b/README.md index 19298a6..811523e 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ You can add this dependency with: ```toml [dependencies] -xml_schema_generator = "0.6.6" +xml_schema_generator = "0.6.7" ``` ## Example