rustyline v1.0.0 Release Notes

Release Date: 2016-08-21 // over 7 years ago
  • 💥 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