diff --git a/Changelog.md b/Changelog.md index c068a87e..3b9084e8 100644 --- a/Changelog.md +++ b/Changelog.md @@ -17,13 +17,15 @@ ### Misc Changes -## 0.28.1 -- 2023-03-19 +## 0.28.1 -- 2023-03-31 ### Misc Changes - [#579]: `ElementWriter.write_inner_content` now uses a `FnOnce` instead of a more restrictive `Fn` closure +- [#584]: `Export EscapeError from the crate` [#579]: https://github.com/tafia/quick-xml/pull/579 +[#584]: https://github.com/tafia/quick-xml/pull/584 ## 0.28.0 -- 2023-03-13 diff --git a/src/lib.rs b/src/lib.rs index 5d5d51c4..6f3ae7a2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -55,8 +55,7 @@ mod errors; mod escapei; pub mod escape { //! Manage xml character escapes - pub(crate) use crate::escapei::EscapeError; - pub use crate::escapei::{escape, partial_escape, unescape, unescape_with}; + pub use crate::escapei::{escape, partial_escape, unescape, unescape_with, EscapeError}; } pub mod events; pub mod name;