Skip to content

Latest commit

 

History

History
118 lines (77 loc) · 3.23 KB

CHANGELOG.md

File metadata and controls

118 lines (77 loc) · 3.23 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[1.0.3] - 2023-12-23

  • Fix versioning

[1.0.2] - 2023-12-23

  • Bumping dependencies

[1.0.1] - 2023-09-17

  • extending docs about some structs
  • fixing Display implementation of TooLongEncodedWord

[1.0.0] - 2023-09-16

Changed

  • lexer::Error gets the alias LexerError
  • parser::Error gets the alias ParserError
  • evaluator::Error gets the alias EvaluatorError
  • Decoder.too_long_encoded_word has a strategy instead of a bool

0.2.2 - 2023-03-29

Changed

  • Bumped base64 to v0.21.0.
  • Bumped chumsky to v0.9.2.

0.2.1 - 2023-01-08

Fixed

  • Fixed discarded errors #20.

0.2.0 - 2022-10-11

Added

  • Added Nix support
  • Allowed decoding strings bigger than 76 chars #15

Changed

  • Renamed error variants to match the Rust API guidelines:
    • lexer::Error::EncodingIssue becomes ParseBytesError
    • lexer::Error::EncodedWordTooLong becomes ParseEncodedWordTooLongError
    • parser::Error::UnknownCharset becomes ParseEncodingError
    • parser::Error::UnknownCharset has been removed (unused)
    • parser::Error::UnknownEncoding becomes ParseEncodingError
    • parser::Error::EncodedWordTooBig becomes ParseEncodingTooBigError
    • parser::Error::EmptyEncoding becomes ParseEncodingEmptyError
    • evaluator::Error::DecodeUtf8 becomes DecodeUtf8Error
    • evaluator::Error::DecodeBase64 becomes DecodeBase64Error
    • evaluator::Error::DecodeQuotedPrintable becomes DecodeQuotedPrintableError

0.1.3 - 2022-10-10

Fixed

  • Max length of encoded words #1
  • Manage tokens special chars #3

Changed

  • Refactored parser using chumsky #7

0.1.2 - 2020-12-30

Fixed

  • Multiple encoded words separator

0.1.1 - 2020-12-30

Added

  • Added evaluator with AST

Changed

  • Decoded fn accepts now &[u8] instead of &str

Fixed

  • Removed space between encoded words #2

0.1.0 - 2020-12-28

First official release.