Skip to content

Latest commit

 

History

History
50 lines (31 loc) · 1.43 KB

CHANGELOG.md

File metadata and controls

50 lines (31 loc) · 1.43 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.

[Unreleased]

  • Bugfix: Missing CPR arguments causes panic

[0.5.0 - 2024-12-12]

  • Removed initializer. Probe terminal size before prompt for every line.

[0.5.0 - 2024-08-30]

  • Bugfix: Char boundary string splitting error
  • Allow dynamic prompt made from iterator over &str
  • Take slice instead of owning buffer for line and history

[0.4.0 - 2024-08-27]

  • Fixed no_std examples build failure by checking in lock files
  • Removed IO abstraction
  • Fixed clippy warnings
  • Removed sync and async features
  • Removed std from default features

[0.3.0 - 2024-07-05]

  • Use embedded_io and embedded_io_async Read/Write traits
    • This ensures the std and no-std implementations are equivilent at the IO API interface
  • Add sync and async examples for rp2040 async makes use of embassy
  • Removed stm32 example as there was no hardware available (can be replaced later)

[0.2.1] - 2024-06-06

  • Added Linefeed as a valid line terminator
  • Fixed overflow error when attempting to navigate empty history

[0.2.0] - 2022-03-22

  • Added basic line history

  • Added EditorBuilder for more ergonomic construction of editors

[0.1.0] - 2022-03-14

  • Initial release