diff options
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 1fa3b76..d266c7f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,21 @@ ### [unreleased] +#### Features + +* `BufReadReader` can now operate on any `std::io::Read` implementation + and no longer requires the reader to implement `std::io::BufRead`. + #### Breaking changes * Added missing `R: Position<O>` bounds for `Tokenizer`/`NaiveParser` constructors. (If you are able to construct a Tokenizer/NaiveParser, you should be able to iterate over it.) +#### Fixes + +* Fixed `BufReadReader` skipping the whole line if it contained invalid UTF-8. + ### 0.5.0 - 2023-08-19 #### Features |