diff options
author | gwenn <gtreguier@gmail.com> | 2023-06-24 21:18:00 +0200 |
---|---|---|
committer | gwenn <gtreguier@gmail.com> | 2023-06-24 21:18:00 +0200 |
commit | 5e262d337abfbfca410ffc6c743da65fecf7ef1c (patch) | |
tree | ec39034119994f5f5c93363cc7caf17bad72b4f0 | |
parent | 3df2ec7fe3ee71f8ed5336f2ea92a9a298502c05 (diff) | |
download | rustyline-5e262d337abfbfca410ffc6c743da65fecf7ef1c.zip |
Prepare next release
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | rustyline-derive/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ [package] name = "rustyline" -version = "11.0.0" +version = "12.0.0" authors = ["Katsu Kawakami <kkawa1570@gmail.com>"] edition = "2021" description = "Rustyline, a readline implementation based on Antirez's Linenoise" @@ -39,7 +39,7 @@ memchr = "2.0" radix_trie = { version = "0.2", optional = true } regex = { version = "1.5.5", optional = true } # For derive -rustyline-derive = { version = "0.8.0", optional = true, path = "rustyline-derive" } +rustyline-derive = { version = "0.9.0", optional = true, path = "rustyline-derive" } [target.'cfg(unix)'.dependencies] nix = { version = "0.26", default-features = false, features = ["fs", "ioctl", "poll", "signal", "term"] } @@ -67,7 +67,7 @@ to your `Cargo.toml`: ```toml [dependencies] -rustyline = "11.0.0" +rustyline = "12.0.0" ``` ## Features diff --git a/rustyline-derive/Cargo.toml b/rustyline-derive/Cargo.toml index 62ee201..c793fdc 100644 --- a/rustyline-derive/Cargo.toml +++ b/rustyline-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustyline-derive" -version = "0.8.0" +version = "0.9.0" authors = ["gwenn"] edition = "2018" description = "Rustyline macros implementation of #[derive(Completer, Helper, Hinter, Highlighter)]" |