Skip to content

Latest commit

 

History

History
62 lines (39 loc) · 2.28 KB

File metadata and controls

62 lines (39 loc) · 2.28 KB

Change Log

All notable changes to this project will be documented in this file. Only versions published since 2023-01-01 are listed here. Please consult the Git history for older version information. See Conventional Commits for commit guidelines.

Note: Unlisted patch versions only involve non-code or otherwise excluded changes and/or version bumps of transitive dependencies.

2.7.0 (2024-02-06)

🚀 Features

  • pkg restructure,separate decoder/encoder, add bases (47e37bc)
    • extract BaseNDecoder/Encoder classes
    • add IBaseDecode/IBaseEncode interfaces
    • migrate chatsets to own files to help w/ treeshaking
    • add base10/26

2.6.0 (2024-01-26)

🚀 Features

  • add base83 chars & preset (5e09baf)
    • add B83_CHARS and BASE83

⏱ Performance improvements

  • memoize value padding (encoding w/ size) (62ccf80)
    • migrate padding into BaseN class
    • add BaseN.clear() for clearing memoization cache

2.5.11 (2023-08-14)

⏱ Performance improvements

  • minor internal updates .encodeBigInt() (43e9a7f)

2.5.10 (2023-08-12)

♻️ Refactoring

  • remove deps, minor internal updates (c675cba)

2.5.0 (2023-03-17)

🚀 Features

  • add BASE16/32/58 aliases for default impls (7a8ae1f)

2.4.0 (2023-02-10)

🚀 Features

  • add optional zero-padding for .encode() (51ce75b)
    • update IBase encode method signatures
    • update BaseN encode impls
    • add tests