All Versions
26
Latest Version
Avg Release Cycle
86 days
Latest Release
-
Changelog History
Page 1
Changelog History
Page 1
-
v0.8.4 Changes
- ๐ Fixed recognition of
?>
,]]>
and/>
tokens as characters. - ๐ Fixed writer output operations to use
write_all
to ensure that the data is written fully. - The document declaration is now written before any characters automatically.
- ๐ Fixed recognition of
-
v0.8.3 Changes
April 27, 2020- Added a new parser option,
ignore_root_level_whitespace
, which makes the parser skip emitting whitespace events outside of the root element when set totrue
. This helps with certain tasks like canonicalization.
- Added a new parser option,
-
v0.8.2 Changes
April 06, 2020- Added a new parser option,
replace_unknown_entity_references
, which allows to ignore invalid Unicode code points and replace them with a Unicode "replacement character" during parsing. This can be helpful to deal with e.g. UTF-16 surrogate pairs. - Added a new emitter option,
pad_self_closing
, which determines the style of the self-closing elements when they are emitted:<a />
(true
) vs<a/>
(false
).
- Added a new parser option,
-
v0.8.1 Changes
April 06, 2020- ๐ Fixed various issues with tests introduced by updates in Rust.
- Adjusted the lexer to ignore contents of the
<!DOCTYPE>
tag. - โ Removed unnecessary unsafety in tests.
- โ Added tests for doc comments in the readme file.
- Switched to GitHub Actions from Travis CI.
-
v0.8.0 Changes
May 16, 2018- Same as 0.7.1, with 0.7.1 being yanked because of the incorrect semver bump.
-
v0.7.1 Changes
- โ Removed dependency on bitflags.
- โ Added the
XmlWriter::inner_mut()
method. - ๐ Fixed some rustdoc warnings.
-
v0.7.0 Changes
October 15, 2017- Same as 0.6.2, with 0.6.2 being yanked because of the incompatible bump of minimum required version of rustc.
-
v0.6.2 Changes
October 10, 2017- โฌ๏ธ Bumped
bitflags
to 1.0.
- โฌ๏ธ Bumped
-
v0.6.1 Changes
July 23, 2017- ๐ Fixed the writer to escape some special characters when writing attribute values.
-
v0.6.0 Changes
July 23, 2017- ๐ Changed the target type of extra entities from
char
toString
. This is an incompatible change.
- ๐ Changed the target type of extra entities from