CHANGELOG: Add missing line breaks

Without these line breaks the changelog is rendered incorrectly
This commit is contained in:
Tobias Bieniek 2021-07-31 09:11:48 +00:00
commit 1ef8b5428b

View file

@ -1,9 +1,11 @@
Version 0.13.0, released 2021-01-13: Version 0.13.0, released 2021-01-13:
* Changes * Changes
* Force namespaces on Element, which was a breaking change. * Force namespaces on Element, which was a breaking change.
Version 0.12.1, released 2021-01-13, yanked: Version 0.12.1, released 2021-01-13, yanked:
* Changes * Changes
* Bump quick-xml dependency. * Bump quick-xml dependency.
Version 0.12, released 2020-02-15: Version 0.12, released 2020-02-15:
* Breaking * Breaking
* `Element.write_to` doesn't prepand xml prelude anymore. Use `write_to_decl` when necessary. * `Element.write_to` doesn't prepand xml prelude anymore. Use `write_to_decl` when necessary.
@ -18,10 +20,12 @@ Version 0.12, released 2020-02-15:
* Add impl for From<Into<Element>> for Node * Add impl for From<Into<Element>> for Node
* Fixes * Fixes
* Update old CI configuration with newer Rust images * Update old CI configuration with newer Rust images
Version 0.11.1, released 2019-09-06: Version 0.11.1, released 2019-09-06:
* Changes * Changes
* Update to quick-xml 0.16 * Update to quick-xml 0.16
* Add a default "comments" feature to transform comments into errors when unset. * Add a default "comments" feature to transform comments into errors when unset.
Version 0.11.0, released 2019-06-14: Version 0.11.0, released 2019-06-14:
* Breaking * Breaking
* Get rid of IntoElements, replace with `Into<Node>` and `<T: Into<Node> IntoIterator<Item = T>>` * Get rid of IntoElements, replace with `Into<Node>` and `<T: Into<Node> IntoIterator<Item = T>>`
@ -31,36 +35,44 @@ Version 0.11.0, released 2019-06-14:
* Update quick-xml to 0.14 * Update quick-xml to 0.14
* Split Node into its own module * Split Node into its own module
* Nicer Debug implementation for NamespaceSet * Nicer Debug implementation for NamespaceSet
Version 0.10.0, released 2018-10-21: Version 0.10.0, released 2018-10-21:
* Changes * Changes
* Update quick-xml to 0.13 * Update quick-xml to 0.13
* Update doc to reflect switch from xml-rs to quick-xml. * Update doc to reflect switch from xml-rs to quick-xml.
Version 0.9.1, released 2018-05-29: Version 0.9.1, released 2018-05-29:
* Fixes * Fixes
* Lumi fixed CDATA handling, minidom will not unescape CDATA bodies anymore. * Lumi fixed CDATA handling, minidom will not unescape CDATA bodies anymore.
* Small changes * Small changes
- Link Mauve implemented IntoAttributeValue on std::net::IpAddr. - Link Mauve implemented IntoAttributeValue on std::net::IpAddr.
Version 0.9.0, released 2018-04-10: Version 0.9.0, released 2018-04-10:
* Small changes * Small changes
- Upgrade quick_xml to 0.12.1 - Upgrade quick_xml to 0.12.1
Version 0.8.0, released 2018-02-18: Version 0.8.0, released 2018-02-18:
* Additions * Additions
- Link Mauve replaced error\_chain with failure ( https://gitlab.com/lumi/minidom-rs/merge_requests/27 ) - Link Mauve replaced error\_chain with failure ( https://gitlab.com/lumi/minidom-rs/merge_requests/27 )
- Yue Liu added support for writing comments and made the writing methods use quick-xml's EventWriter ( https://gitlab.com/lumi/minidom-rs/merge_requests/26 ) - Yue Liu added support for writing comments and made the writing methods use quick-xml's EventWriter ( https://gitlab.com/lumi/minidom-rs/merge_requests/26 )
Version 0.6.2, released 2017-08-27: Version 0.6.2, released 2017-08-27:
* Additions * Additions
- Link Mauve added an implementation of IntoElements for all Into<Element> ( https://gitlab.com/lumi/minidom-rs/merge_requests/19 ) - Link Mauve added an implementation of IntoElements for all Into<Element> ( https://gitlab.com/lumi/minidom-rs/merge_requests/19 )
Version 0.6.1, released 2017-08-20: Version 0.6.1, released 2017-08-20:
* Additions * Additions
- Astro added Element::has_ns, which checks whether an element's namespace matches the passed argument. ( https://gitlab.com/lumi/minidom-rs/merge_requests/16 ) - Astro added Element::has_ns, which checks whether an element's namespace matches the passed argument. ( https://gitlab.com/lumi/minidom-rs/merge_requests/16 )
- Link Mauve updated the quick-xml dependency to the latest version. - Link Mauve updated the quick-xml dependency to the latest version.
* Fixes * Fixes
- Because break value is now stable, Link Mauve rewrote some code marked FIXME to use it. - Because break value is now stable, Link Mauve rewrote some code marked FIXME to use it.
Version 0.6.0, released 2017-08-13: Version 0.6.0, released 2017-08-13:
* Big changes * Big changes
- Astro added proper support for namespace prefixes. ( https://gitlab.com/lumi/minidom-rs/merge_requests/14 ) - Astro added proper support for namespace prefixes. ( https://gitlab.com/lumi/minidom-rs/merge_requests/14 )
* Fixes * Fixes
- Astro fixed a regression that caused the writer not to escape its xml output properly. ( https://gitlab.com/lumi/minidom-rs/merge_requests/15 ) - Astro fixed a regression that caused the writer not to escape its xml output properly. ( https://gitlab.com/lumi/minidom-rs/merge_requests/15 )
Version 0.5.0, released 2017-06-10: Version 0.5.0, released 2017-06-10:
* Big changes * Big changes
- Eijebong made parsing a lot faster by switching the crate from xml-rs to quick_xml. ( https://gitlab.com/lumi/minidom-rs/merge_requests/11 ) - Eijebong made parsing a lot faster by switching the crate from xml-rs to quick_xml. ( https://gitlab.com/lumi/minidom-rs/merge_requests/11 )