From 9a07b41c9dfc704ddd1e1057a4a288b86bfd263c Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Tue, 5 Mar 2024 21:13:57 +0100 Subject: [PATCH] Pin `reedline` to 0.30.0 release (#12081) https://github.com/nushell/reedline/releases/tag/v0.30.0 --- Cargo.lock | 5 +++-- Cargo.toml | 4 ++-- crates/nu-cli/Cargo.toml | 2 +- crates/nu-lsp/Cargo.toml | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c39da4e55d..4eb866d3fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4582,8 +4582,9 @@ dependencies = [ [[package]] name = "reedline" -version = "0.29.0" -source = "git+https://github.com/nushell/reedline?branch=main#4fd129588a7373acd3e154fb55a5b572948f7df7" +version = "0.30.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "413a9fa6a5d8c937d3ae1e975bfb6a918bb0b6cdfae6a10416218c837a31b8fc" dependencies = [ "arboard", "chrono", diff --git a/Cargo.toml b/Cargo.toml index f5b91d5e7f..a6373b6d92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ nu-protocol = { path = "./crates/nu-protocol", version = "0.90.2" } nu-std = { path = "./crates/nu-std", version = "0.90.2" } nu-utils = { path = "./crates/nu-utils", version = "0.90.2" } -reedline = { version = "0.29.0", features = ["bashisms", "sqlite"] } +reedline = { version = "0.30.0", features = ["bashisms", "sqlite"] } crossterm = "0.27" ctrlc = "3.4" @@ -179,7 +179,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", branch = "main" } +# reedline = { git = "https://github.com/nushell/reedline", branch = "main" } # nu-ansi-term = {git = "https://github.com/nushell/nu-ansi-term.git", branch = "main"} # Run all benchmarks with `cargo bench` diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index cdca7a7cda..5fd4e42d63 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -25,7 +25,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.90.2" } nu-utils = { path = "../nu-utils", version = "0.90.2" } nu-color-config = { path = "../nu-color-config", version = "0.90.2" } nu-ansi-term = "0.50.0" -reedline = { version = "0.29.0", features = ["bashisms", "sqlite"] } +reedline = { version = "0.30.0", features = ["bashisms", "sqlite"] } chrono = { default-features = false, features = ["std"], version = "0.4" } crossterm = "0.27" diff --git a/crates/nu-lsp/Cargo.toml b/crates/nu-lsp/Cargo.toml index 7ac8bd232c..101a176023 100644 --- a/crates/nu-lsp/Cargo.toml +++ b/crates/nu-lsp/Cargo.toml @@ -12,7 +12,7 @@ nu-cli = { path = "../nu-cli", version = "0.90.2" } nu-parser = { path = "../nu-parser", version = "0.90.2" } nu-protocol = { path = "../nu-protocol", version = "0.90.2" } -reedline = { version = "0.29" } +reedline = { version = "0.30" } crossbeam-channel = "0.5.8" lsp-types = "0.95.0"