diff --git a/CHANGELOG.md b/CHANGELOG.md index ecbac55..7e0e98c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.2.0 (2023-07-27) + +- Add a field (`Parser.curr_raw`) that holds the raw bytes read since the last + event. This can be used by a filter in order to reconstruct the input stream. +- Various performance improvements + ## v0.1.0 (2022-06-30) - First release of `dec_ansi_parser`! diff --git a/pyproject.toml b/pyproject.toml index 6b5a169..9c0f13f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dec_ansi_parser" -version = "0.1.0" +version = "0.2.0" description = "Terminal control sequence parser" authors = ["yut23"] license = "BSD 3-Clause"