Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = ["xmlity", "xmlity-derive", "xmlity-quick-xml"]

[workspace.package]
version = "0.0.7"
version = "0.0.8"
edition = "2021"
rust-version = "1.82.0"
authors = ["Lukas Friman <lukas@dreamplay.net>"]
Expand All @@ -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.7", path = "./xmlity-derive" }
xmlity = { version = "^0.0.7", path = "./xmlity" }
xmlity-quick-xml = { version = "^0.0.7", path = "./xmlity-quick-xml" }
xmlity-derive = { version = "^0.0.8", path = "./xmlity-derive" }
xmlity = { version = "^0.0.8", path = "./xmlity" }
xmlity-quick-xml = { version = "^0.0.8", path = "./xmlity-quick-xml" }
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ To get started, we recommend you check out [the documentation][docs.rs] and [the
```toml
[dependencies]

xmlity = { version = "0.0.7", features = ["derive"] }
xmlity = { version = "0.0.8", features = ["derive"] }

xmlity-quick-xml = "0.0.7"
xmlity-quick-xml = "0.0.8"
```

2. Write defintions and use:
Expand Down
17 changes: 17 additions & 0 deletions xmlity-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.8](https://github.com/lukasfri/xmlity/compare/xmlity-derive-v0.0.7...xmlity-derive-v0.0.8) - 2025-07-30

### Added

- *(derive)* Adds `ignore_comments` option to easily ignore comments in elements and values. ([#120](https://github.com/lukasfri/xmlity/pull/120))
- Adds external data support to deserialization process. ([#116](https://github.com/lukasfri/xmlity/pull/116))
- *(derive)* Adds `serialize_with`/`deserialize_with`/`with` for easy `(De)serialize` implementations. ([#109](https://github.com/lukasfri/xmlity/pull/109))

### Fixed

- Fixes broken `enforce_prefix` option. ([#129](https://github.com/lukasfri/xmlity/pull/129))
- *(derive)* Support serialization of enums with no arms. ([#113](https://github.com/lukasfri/xmlity/pull/113))

### Other

- Updates documentation and examples to bring it up to date with 0.0.8 ([#128](https://github.com/lukasfri/xmlity/pull/128))

## [0.0.7](https://github.com/lukasfri/xmlity/compare/xmlity-derive-v0.0.6...xmlity-derive-v0.0.7) - 2025-06-23

### Added
Expand Down
23 changes: 23 additions & 0 deletions xmlity-quick-xml/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.8](https://github.com/lukasfri/xmlity/compare/xmlity-quick-xml-v0.0.7...xmlity-quick-xml-v0.0.8) - 2025-07-30

### Added

- *(derive)* Adds `ignore_comments` option to easily ignore comments in elements and values. ([#120](https://github.com/lukasfri/xmlity/pull/120))
- Adds external data support to deserialization process. ([#116](https://github.com/lukasfri/xmlity/pull/116))
- *(derive)* Adds `serialize_with`/`deserialize_with`/`with` for easy `(De)serialize` implementations. ([#109](https://github.com/lukasfri/xmlity/pull/109))

### Fixed

- Fixes broken `enforce_prefix` option. ([#129](https://github.com/lukasfri/xmlity/pull/129))
- *(value)* Fix stack overflow for subvalue in struct from value. ([#125](https://github.com/lukasfri/xmlity/pull/125))
- *(value)* Fixed `deserialize_seq` on most XML value types. ([#124](https://github.com/lukasfri/xmlity/pull/124))
- *(quick-xml)* Fix bug in sub-access of attributes in elements. ([#123](https://github.com/lukasfri/xmlity/pull/123))
- *(core)* [**breaking**] Change `SerializeSeq` trait to return `()` for each individual element. ([#115](https://github.com/lukasfri/xmlity/pull/115))
- *(quick-xml)* Fixed sequence-based text values (enums) not being supported in attributes. ([#114](https://github.com/lukasfri/xmlity/pull/114))
- *(derive)* Support serialization of enums with no arms. ([#113](https://github.com/lukasfri/xmlity/pull/113))

### Other

- Updates documentation and examples to bring it up to date with 0.0.8 ([#128](https://github.com/lukasfri/xmlity/pull/128))
- *(derive)* Adds test for `extendable = "iterator"` option. ([#119](https://github.com/lukasfri/xmlity/pull/119))

## [0.0.7](https://github.com/lukasfri/xmlity/compare/xmlity-quick-xml-v0.0.6...xmlity-quick-xml-v0.0.7) - 2025-06-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion xmlity-quick-xml/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "xmlity-quick-xml"
description = "XMLity implementation of quick-xml."
version = "0.0.7"
version = "0.0.8"
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
Expand Down
21 changes: 21 additions & 0 deletions xmlity/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.8](https://github.com/lukasfri/xmlity/compare/xmlity-v0.0.7...xmlity-v0.0.8) - 2025-07-30

### Added

- *(value)* [**breaking**] Adds functions to `XmlSeq` that give access to inner `VecDeque`. ([#126](https://github.com/lukasfri/xmlity/pull/126))
- *(core)* Infallible error types. ([#122](https://github.com/lukasfri/xmlity/pull/122))
- *(value)* Make visitors of XML value types public. ([#117](https://github.com/lukasfri/xmlity/pull/117))
- Adds external data support to deserialization process. ([#116](https://github.com/lukasfri/xmlity/pull/116))
- *(core)* Add `(De)serialize` impl for `isize`/`usize` non-zero types. ([#112](https://github.com/lukasfri/xmlity/pull/112))
- *(core)* Add `(De)serialize` impls for non-zero primitives. ([#111](https://github.com/lukasfri/xmlity/pull/111))

### Fixed

- *(value)* Fix stack overflow for subvalue in struct from value. ([#125](https://github.com/lukasfri/xmlity/pull/125))
- *(value)* Fixed `deserialize_seq` on most XML value types. ([#124](https://github.com/lukasfri/xmlity/pull/124))
- *(core)* [**breaking**] Change `SerializeSeq` trait to return `()` for each individual element. ([#115](https://github.com/lukasfri/xmlity/pull/115))

### Other

- Updates main and book README.md files. ([#131](https://github.com/lukasfri/xmlity/pull/131))

## [0.0.7](https://github.com/lukasfri/xmlity/compare/xmlity-v0.0.6...xmlity-v0.0.7) - 2025-06-23

### Added
Expand Down