From 2548151d24e5e9803299ef491f45b28dfd141f42 Mon Sep 17 00:00:00 2001 From: gwenn Date: Tue, 5 Dec 2023 18:56:13 +0100 Subject: [PATCH] Prepare next release --- Cargo.toml | 4 ++-- README.md | 2 +- rustyline-derive/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3e9492efb..54a91a929 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustyline" -version = "12.0.0" +version = "13.0.0" authors = ["Katsu Kawakami "] 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.9.0", optional = true, path = "rustyline-derive" } +rustyline-derive = { version = "0.10.0", optional = true, path = "rustyline-derive" } [target.'cfg(unix)'.dependencies] nix = { version = "0.27", default-features = false, features = ["fs", "ioctl", "poll", "signal", "term"] } diff --git a/README.md b/README.md index 4dd54337f..84add3ae9 100644 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ to your `Cargo.toml`: ```toml [dependencies] -rustyline = "12.0.0" +rustyline = "13.0.0" ``` ## Features diff --git a/rustyline-derive/Cargo.toml b/rustyline-derive/Cargo.toml index c793fdcbf..cc117bfcc 100644 --- a/rustyline-derive/Cargo.toml +++ b/rustyline-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustyline-derive" -version = "0.9.0" +version = "0.10.0" authors = ["gwenn"] edition = "2018" description = "Rustyline macros implementation of #[derive(Completer, Helper, Hinter, Highlighter)]"