Skip to content

Commit 9c60819

Browse files
authored
Merge pull request #584 from Aaron1011/export-escape-error
Export EscapeError from the crate
2 parents 2e9123a + 67e8f1a commit 9c60819

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616

1717
### Misc Changes
1818

19+
- [#584]: Export `EscapeError` from the crate
20+
21+
[#584]: https://github.com/tafia/quick-xml/pull/584
22+
1923

2024
## 0.28.1 -- 2023-03-19
2125

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ mod errors;
5555
mod escapei;
5656
pub mod escape {
5757
//! Manage xml character escapes
58-
pub(crate) use crate::escapei::EscapeError;
59-
pub use crate::escapei::{escape, partial_escape, unescape, unescape_with};
58+
pub use crate::escapei::{escape, partial_escape, unescape, unescape_with, EscapeError};
6059
}
6160
pub mod events;
6261
pub mod name;

0 commit comments

Comments
 (0)