diff options
author | Martin Fischer <martin@push-f.com> | 2023-08-28 18:35:59 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2023-09-03 23:00:05 +0200 |
commit | ec8f612754a516797589d23cf08b60ae406a2e96 (patch) | |
tree | 067c064feecdb2559d5c9a7bf2ea2b4ee282d8f0 /CHANGELOG.md | |
parent | 632a14059b24a9435efe4df6c186a36947938475 (diff) |
fix!: add missing `R: Position<O>` bounds
It doesn't make sense that you're able to construct
a Tokenizer/NaiveParser that you're unable to iterate over.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8af61ff..1fa3b76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # html5tokenizer changelog +### [unreleased] + +#### 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.) + ### 0.5.0 - 2023-08-19 #### Features |