ChangeLog

 1Version NEXT:
 20000-00-00 Jonas Schäfer <jonas@zombofant.net>
 3    * Breaking
 4      - The methods of `TextCodec<T>` now have `&self` receivers. This also
 5        implies that `#[xml(text(codec = ..))]` now takes expressions instead
 6        of type paths.
 7
 8        Because all implementations provided by `xso` were in fact unit
 9        structs, this should not change most invocations, with one exception:
10        The type argument of `Base64` was removed. Replace all `Base64<Foo>`
11        references with `Base64.filtered(Foo)` to update your code.
12
13        This change overall allows for more flexibility in the implementation
14        of text codecs.
15    * Added
16      - Support for child elements in derive macros. Child elements may also
17        be wrapped in Option or Box or in containers like Vec or HashSet.
18      - Support for overriding the names of the types generated by the derive
19        macros.
20      - Support for deriving FromXml and AsXml on enums.
21      - Support for extracting data from child elements without intermediate
22        structs.
23      - Support for collecting all unknown children in a single field as
24        collection of `minidom::Element`.
25      - Support for "transparent" structs (newtype-like patterns for XSO).
26
27Version 0.1.2:
282024-07-26 Jonas Schäfer <jonas@zombofant.net>
29    * Added
30      - FromXmlText and AsXmlText are now implemented on char.
31    * Fixed
32      - Docs build on docs.rs now shows feature-gated items.
33
34Version 0.1.1:
352024-07-25 Maxime pep Buquet <pep@bouah.net>
36    * Added
37      - Import various text codecs from parsers: FixedHex, ColonSeparatedHex,
38        EmptyAsError.
39
40Version 0.1.0:
412024-07-25 Jonas Schäfer <jonas@zombofant.net>
42    * Initial release of this crate