Skip to content

Version 1.0.0

Compare
Choose a tag to compare
@kkawakam kkawakam released this 21 Aug 03:32
· 1638 commits to master since this release

Breaking Changes

You will need to explicitly parametrizing the Editor if there is no completer.

Before you would do the following (if you did not specify a completer):

let mut rl = Editor::new();

Now you will have to do the following (if you did not specify a completer):

let mut rl = Editor::<()>::new();

Changelog

  • Fix compilation against musl #41
  • Fix mult-line prompts #45
  • History if configurable to ignore spaces and/or duplicate entries #51
  • Parametrize the editor by the Completer type #52
  • Clear only the lines/rows drawn used by the editor #53
  • Windows support #42 #54 #69

Thank you to @gwenn for his work