From d5206cbd6894848a828ff34fd9ef312a76413fa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C5=BD=C3=A1dn=C3=ADk?= Date: Tue, 9 Jan 2024 21:42:44 +0200 Subject: [PATCH] Pin reedline to 0.28 release (#11510) See full release notes: [nushell/reedline@v0.28.0 (release)](https://github.com/nushell/reedline/releases/tag/v0.28.0) # Description # User-Facing Changes # Tests + Formatting # After Submitting --- 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 b8b6d9b74a7a..c84c66a5d031 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4374,8 +4374,9 @@ dependencies = [ [[package]] name = "reedline" -version = "0.27.1" -source = "git+https://github.com/nushell/reedline.git?branch=main#b68ce33c750b700bb4f8adccbc2e160d1b7c8742" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68f4e89a0f80909b3ca4bca9759ed37e4bfddb6f5d2ffb1b4ceb2b1638a3e1eb" dependencies = [ "chrono", "crossterm", diff --git a/Cargo.toml b/Cargo.toml index 3685d5a29eb3..ca4982fe6453 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -76,7 +76,7 @@ nu-std = { path = "./crates/nu-std", version = "0.88.2" } nu-utils = { path = "./crates/nu-utils", version = "0.88.2" } nu-ansi-term = "0.49.0" -reedline = { version = "0.27.0", features = ["bashisms", "sqlite"] } +reedline = { version = "0.28.0", features = ["bashisms", "sqlite"] } crossterm = "0.27" ctrlc = "3.4" @@ -173,7 +173,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 32ffabdb03d8..77124dd1f38d 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -25,7 +25,7 @@ nu-protocol = { path = "../nu-protocol", version = "0.88.2" } nu-utils = { path = "../nu-utils", version = "0.88.2" } nu-color-config = { path = "../nu-color-config", version = "0.88.2" } nu-ansi-term = "0.49.0" -reedline = { version = "0.27.0", features = ["bashisms", "sqlite"] } +reedline = { version = "0.28.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 a84906d7363b..e4ca76c8217e 100644 --- a/crates/nu-lsp/Cargo.toml +++ b/crates/nu-lsp/Cargo.toml @@ -12,7 +12,7 @@ nu-cli = { path = "../nu-cli", version = "0.88.2" } nu-parser = { path = "../nu-parser", version = "0.88.2" } nu-protocol = { path = "../nu-protocol", version = "0.88.2" } -reedline = { version = "0.27" } +reedline = { version = "0.28" } crossbeam-channel = "0.5.8" lsp-types = "0.95.0"