From a7e9cb7d137a9a0daa086d117b558fce557bf4e4 Mon Sep 17 00:00:00 2001 From: Rob Wagner Date: Sun, 7 Apr 2024 15:32:01 -0400 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 532333f..cfbd59e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,22 @@ # Change Log +## 2024.04.07 - v0.3.0 + +- Added support for character-at-a-time mode and line mode. + [@not-jan](https://github.com/not-jan) + - Character-at-a-time mode can be enabled by setting the `message_mode` field + in the `TelnetCodec` struct to `false`. This will result in each character + generating an individual event. +- Exposed the full `TelnetCodec` struct to the public API, where previously it + was only partially exposed. + ## 2024.03.20 - v0.2.0 -- Fixes several off-by-one errors in the decoding logic. (@xxx) -- Added raw message support in the TelnetEvent enum. (@xxx) -- Added tests for decoding logic. (@xxx) +- Fixes several off-by-one errors in the decoding logic. + [@xxx](https://github.com/xxx) +- Added raw message support in the TelnetEvent enum. + [@xxx](https://github.com/xxx) +- Added tests for decoding logic. [@xxx](https://github.com/xxx) - General documentation improvements. ## 2023.02.18 - v0.1.0