Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export EscapeError from the crate #584

Merged
merged 1 commit into from Apr 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions Changelog.md
Expand Up @@ -16,6 +16,10 @@

### Misc Changes

- [#584]: Export `EscapeError` from the crate

[#584]: https://github.com/tafia/quick-xml/pull/584


## 0.28.1 -- 2023-03-19

Expand Down
3 changes: 1 addition & 2 deletions src/lib.rs
Expand Up @@ -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;
Expand Down