diff --git a/CHANGELOG.md b/CHANGELOG.md index 93583d51e3..d8bca49827 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,12 @@ # Change Log -## [0.3.1] (in development) +## [0.3.2] (in development) + +## [0.3.1] 2022-26-03 * Added: Thanks to @lepapareil, @hurlenko and @ballsteve for contributing installation docs for Windows and MacOS. * Added: `Node` and `RoNode` now have `has_property` (alias `has_attribute`) and `has_property_ns` (alias `has_attribute_ns`) to check attribute presence without allocating the value. +* Added: `xpath::is_well_formed_xpath`, thanks @bcpeinhardt ! ## [0.3.0] 2021-27-05 diff --git a/tests/xpath_tests.rs b/tests/xpath_tests.rs index a5af0870a6..d2b33abd26 100644 --- a/tests/xpath_tests.rs +++ b/tests/xpath_tests.rs @@ -193,7 +193,7 @@ fn cleanup_safely_unlinked_xpath_nodes() { assert!(true, "Drops went OK."); } -/// Tests for the fn xml_xpath_compiles +/// Tests for checking xpath well-formedness mod compile_tests { use libxml::xpath::is_well_formed_xpath;