diff --git a/Cargo.toml b/Cargo.toml index 02723f6f9..80ab0431c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustyline" -version = "10.1.0" +version = "11.0.0" authors = ["Katsu Kawakami "] edition = "2021" description = "Rustyline, a readline implementation based on Antirez's Linenoise" @@ -40,7 +40,7 @@ memchr = "2.0" radix_trie = { version = "0.2", optional = true } regex = { version = "1.5.5", optional = true } # For derive -rustyline-derive = { version = "0.7.0", optional = true, path = "rustyline-derive" } +rustyline-derive = { version = "0.8.0", optional = true, path = "rustyline-derive" } [target.'cfg(unix)'.dependencies] nix = { version = "0.26", default-features = false, features = ["fs", "ioctl", "poll", "signal", "term"] } diff --git a/README.md b/README.md index 31d53a0a9..f6cff9b56 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ to your `Cargo.toml`: ```toml [dependencies] -rustyline = "10.1.0" +rustyline = "11.0.0" ``` ## Features diff --git a/TODO.md b/TODO.md index 6776f2209..2fb854c0d 100644 --- a/TODO.md +++ b/TODO.md @@ -51,7 +51,7 @@ History each line input session. - [x] append_history - [ ] history_truncate_file -- [ ] custom persistent storage +- [X] custom persistent storage Input diff --git a/rustyline-derive/Cargo.toml b/rustyline-derive/Cargo.toml index a15484650..eeb024039 100644 --- a/rustyline-derive/Cargo.toml +++ b/rustyline-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustyline-derive" -version = "0.7.0" +version = "0.8.0" authors = ["gwenn"] edition = "2018" description = "Rustyline macros implementation of #[derive(Completer, Helper, Hinter, Highlighter)]"