diff --git a/CHANGELOG.md b/CHANGELOG.md index 2623d9d..66e7571 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] + +## [0.18.1] - 2023-09-30 +### Added +- `ExpandedName::from_static`. + Thanks to [@WhyNotHugo](https://github.com/WhyNotHugo) + ### Fixed - Replace `\r` in CDATA as well. +- `no_std` build. + Thanks to [@wenyuzhao](https://github.com/wenyuzhao) ## [0.18.0] - 2023-02-04 ### Added @@ -241,7 +249,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). [@tomjw64]: https://github.com/tomjw64 -[Unreleased]: https://github.com/RazrFalcon/roxmltree/compare/v0.18.0..HEAD +[Unreleased]: https://github.com/RazrFalcon/roxmltree/compare/v0.18.1..HEAD +[0.18.1]: https://github.com/RazrFalcon/roxmltree/compare/v0.18.0...v0.18.1 [0.18.0]: https://github.com/RazrFalcon/roxmltree/compare/v0.17.0...v0.18.0 [0.17.0]: https://github.com/RazrFalcon/roxmltree/compare/v0.16.0...v0.17.0 [0.16.0]: https://github.com/RazrFalcon/roxmltree/compare/v0.15.1...v0.16.0 diff --git a/Cargo.toml b/Cargo.toml index 18f0252..9dd0f8e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "roxmltree" -version = "0.18.0" +version = "0.18.1" authors = ["Yevhenii Reizner "] keywords = ["xml", "parser", "tree", "dom"] categories = ["parser-implementations"] @@ -16,7 +16,7 @@ members = ["benches"] exclude = ["test-apps", "testing-tools"] [dependencies] -xmlparser = { version = "0.13.5", default-features = false } +xmlparser = { version = "0.13.6", default-features = false } [features] default = ["std", "positions"]