From 58124e66a4b66f495c1d7d3098b81be7180e6b2f Mon Sep 17 00:00:00 2001 From: Stefan Holderbach Date: Mon, 16 Oct 2023 20:34:45 +0200 Subject: [PATCH] Pin `reedline` to `0.25.0` release (#10741) See release notes: https://github.com/nushell/reedline/releases/tag/v0.25.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 42ec558e1e..0241d9f66b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4244,8 +4244,9 @@ dependencies = [ [[package]] name = "reedline" -version = "0.24.0" -source = "git+https://github.com/nushell/reedline.git?branch=main#b1344f6a653b7c37154a1dd79b3c4e34afe6cfc9" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7dc1d1d369c194cf79acc204397aca1fecc4248df3e1c1eabb15e5ef2d16991" dependencies = [ "chrono", "crossterm 0.27.0", diff --git a/Cargo.toml b/Cargo.toml index 5d23ed7197..0b6c8fc2a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -67,7 +67,7 @@ nu-term-grid = { path = "./crates/nu-term-grid", version = "0.85.1" } nu-std = { path = "./crates/nu-std", version = "0.85.1" } nu-utils = { path = "./crates/nu-utils", version = "0.85.1" } nu-ansi-term = "0.49.0" -reedline = { version = "0.24.0", features = ["bashisms", "sqlite"] } +reedline = { version = "0.25.0", features = ["bashisms", "sqlite"] } crossterm = "0.27" ctrlc = "3.4" @@ -164,7 +164,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"} # uu_cp = { git = "https://github.com/uutils/coreutils.git", branch = "main" } diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index 211cddc45e..86b36bf5a6 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -25,7 +25,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.85.1" } nu-utils = { path = "../nu-utils", version = "0.85.1" } nu-color-config = { path = "../nu-color-config", version = "0.85.1" } nu-ansi-term = "0.49.0" -reedline = { version = "0.24.0", features = ["bashisms", "sqlite"] } +reedline = { version = "0.25.0", features = ["bashisms", "sqlite"] } chrono = { default-features = false, features = ["std"], version = "0.4" } crossterm = "0.27"