From 5a4b6f0f7f7fd72436cc20c788aa3db3ff2748d8 Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Tue, 25 Apr 2023 20:58:33 +0200 Subject: [PATCH] Pin `reedline` to `0.19.0` release (#8996) # Description See release notes: https://github.com/nushell/reedline/releases/tag/v0.19.0 --- Cargo.lock | 5 +++-- Cargo.toml | 4 ++-- crates/nu-cli/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f13c33aa0..d0320d003 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4322,8 +4322,9 @@ dependencies = [ [[package]] name = "reedline" -version = "0.18.0" -source = "git+https://github.com/nushell/reedline.git?branch=main#86beb8793e9fa910eada7929f50ea78207590a69" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b8684e0f5d6fb8529156a19c637645dd7fd5018efbdeaa306f53f54e3b404de" dependencies = [ "chrono", "crossterm 0.26.1", diff --git a/Cargo.toml b/Cargo.toml index d3b623c05..3d70df953 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -65,7 +65,7 @@ nu-std = { path = "./crates/nu-std", version = "0.78.1" } nu-utils = { path = "./crates/nu-utils", version = "0.78.1" } nu-ansi-term = "0.47.0" -reedline = { version = "0.18.0", features = ["bashisms", "sqlite"]} +reedline = { version = "0.19.0", features = ["bashisms", "sqlite"]} rayon = "1.7.0" is_executable = "1.0.1" @@ -160,7 +160,7 @@ bench = false # To use a development version of a dependency please use a global override here # changing versions in each sub-crate of the workspace is tedious [patch.crates-io] -reedline = { git = "https://github.com/nushell/reedline.git", branch = "main"} +# reedline = { git = "https://github.com/nushell/reedline.git", branch = "main"} # nu-ansi-term = {git = "https://github.com/nushell/nu-ansi-term.git", branch = "main"} # Criterion benchmarking setup diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index e2260a03d..9834b918f 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -24,7 +24,7 @@ nu-utils = { path = "../nu-utils", version = "0.78.1" } nu-color-config = { path = "../nu-color-config", version = "0.78.1" } nu-ansi-term = "0.47.0" -reedline = { version = "0.18.0", features = ["bashisms", "sqlite"]} +reedline = { version = "0.19.0", features = ["bashisms", "sqlite"]} atty = "0.2.14" chrono = { default-features = false, features = ["std"], version = "0.4.23" }