From 0f0518cb3326cad70630b3e1a8523f3d3e568e83 Mon Sep 17 00:00:00 2001 From: gwenn Date: Sun, 5 Jan 2020 17:52:06 +0100 Subject: [PATCH] Prepare release 6.0.0 --- 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 41277d8504..2b0db0a9e0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustyline" -version = "5.0.6" +version = "6.0.0" authors = ["Katsu Kawakami "] edition = "2018" description = "Rustyline, a readline implementation based on Antirez's Linenoise" @@ -38,7 +38,7 @@ winapi = { version = "0.3", features = ["consoleapi", "handleapi", "minwindef", env_logger = "0.7" tempdir = "0.3" assert_matches = "1.2" -rustyline-derive = { version = "0.2.0", path = "rustyline-derive" } +rustyline-derive = { version = "0.3.0", path = "rustyline-derive" } [features] default = ["with-dirs"] diff --git a/README.md b/README.md index fe7d81bb19..18e4f56bdf 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ to your `Cargo.toml`: ```toml [dependencies] -rustyline = "5.0.6" +rustyline = "6.0.0" ``` ## Features diff --git a/rustyline-derive/Cargo.toml b/rustyline-derive/Cargo.toml index 9aa723a464..e9e94a03dc 100644 --- a/rustyline-derive/Cargo.toml +++ b/rustyline-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustyline-derive" -version = "0.2.0" +version = "0.3.0" authors = ["gwenn"] edition = "2018" description = "Rustyline macros implementation of #[derive(Completer, Helper, Hinter, Highlighter)]"