Skip to content

Commit 057de06

Browse files
authored
bump nushell from release version to development version (#9215)
# Description Bump nushell to 0.80.1 development version # User-Facing Changes <!-- List of all changes that impact the user experience here. This helps us keep track of breaking changes. --> # Tests + Formatting <!-- Don't forget to add tests that cover your changes. Make sure you've run and fixed any issues with these commands: - `cargo fmt --all -- --check` to check standard code formatting (`cargo fmt --all` applies these changes) - `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A clippy::needless_collect -A clippy::result_large_err` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass - `cargo run -- crates/nu-std/tests/run.nu` to run the tests for the standard library > **Note** > from `nushell` you can also use the `toolkit` as follows > ```bash > use toolkit.nu # or use an `env_change` hook to activate it automatically > toolkit check pr > ``` --> # After Submitting <!-- If your PR had any user-facing changes, update [the documentation](https://github.com/nushell/nushell.github.io) after the PR is merged, if necessary. This will help us keep the docs up to date. -->
1 parent 8695b57 commit 057de06

28 files changed

Lines changed: 124 additions & 124 deletions

File tree

Cargo.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "MIT"
1010
name = "nu"
1111
repository = "https://github.com/nushell/nushell"
1212
rust-version = "1.60"
13-
version = "0.80.0"
13+
version = "0.80.1"
1414

1515
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1616

@@ -47,22 +47,22 @@ crossterm = "0.26"
4747
ctrlc = "3.2.1"
4848
log = "0.4"
4949
miette = { version = "5.7.0", features = ["fancy-no-backtrace"] }
50-
nu-cli = { path = "./crates/nu-cli", version = "0.80.0" }
51-
nu-color-config = { path = "./crates/nu-color-config", version = "0.80.0" }
52-
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.80.0" }
53-
nu-command = { path = "./crates/nu-command", version = "0.80.0" }
54-
nu-engine = { path = "./crates/nu-engine", version = "0.80.0" }
55-
nu-json = { path = "./crates/nu-json", version = "0.80.0" }
56-
nu-parser = { path = "./crates/nu-parser", version = "0.80.0" }
57-
nu-path = { path = "./crates/nu-path", version = "0.80.0" }
58-
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.80.0" }
59-
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.80.0" }
60-
nu-protocol = { path = "./crates/nu-protocol", version = "0.80.0" }
61-
nu-system = { path = "./crates/nu-system", version = "0.80.0" }
62-
nu-table = { path = "./crates/nu-table", version = "0.80.0" }
63-
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.80.0" }
64-
nu-std = { path = "./crates/nu-std", version = "0.80.0" }
65-
nu-utils = { path = "./crates/nu-utils", version = "0.80.0" }
50+
nu-cli = { path = "./crates/nu-cli", version = "0.80.1" }
51+
nu-color-config = { path = "./crates/nu-color-config", version = "0.80.1" }
52+
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.80.1" }
53+
nu-command = { path = "./crates/nu-command", version = "0.80.1" }
54+
nu-engine = { path = "./crates/nu-engine", version = "0.80.1" }
55+
nu-json = { path = "./crates/nu-json", version = "0.80.1" }
56+
nu-parser = { path = "./crates/nu-parser", version = "0.80.1" }
57+
nu-path = { path = "./crates/nu-path", version = "0.80.1" }
58+
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.80.1" }
59+
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.80.1" }
60+
nu-protocol = { path = "./crates/nu-protocol", version = "0.80.1" }
61+
nu-system = { path = "./crates/nu-system", version = "0.80.1" }
62+
nu-table = { path = "./crates/nu-table", version = "0.80.1" }
63+
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.80.1" }
64+
nu-std = { path = "./crates/nu-std", version = "0.80.1" }
65+
nu-utils = { path = "./crates/nu-utils", version = "0.80.1" }
6666

6767
nu-ansi-term = "0.47.0"
6868
reedline = { version = "0.19.1", features = ["bashisms", "sqlite"]}
@@ -92,7 +92,7 @@ nix = { version = "0.26", default-features = false, features = [
9292
atty = "0.2"
9393

9494
[dev-dependencies]
95-
nu-test-support = { path = "./crates/nu-test-support", version = "0.80.0" }
95+
nu-test-support = { path = "./crates/nu-test-support", version = "0.80.1" }
9696
tempfile = "3.5.0"
9797
assert_cmd = "2.0.2"
9898
criterion = "0.4"

crates/nu-cli/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cli"
55
edition = "2021"
66
license = "MIT"
77
name = "nu-cli"
8-
version = "0.80.0"
8+
version = "0.80.1"
99

1010
[lib]
1111
bench = false
1212

1313
[dev-dependencies]
14-
nu-test-support = { path = "../nu-test-support", version = "0.80.0" }
14+
nu-test-support = { path = "../nu-test-support", version = "0.80.1" }
1515
rstest = { version = "0.17.0", default-features = false }
1616

1717
[dependencies]
18-
nu-command = { path = "../nu-command", version = "0.80.0" }
19-
nu-engine = { path = "../nu-engine", version = "0.80.0" }
20-
nu-path = { path = "../nu-path", version = "0.80.0" }
21-
nu-parser = { path = "../nu-parser", version = "0.80.0" }
22-
nu-protocol = { path = "../nu-protocol", version = "0.80.0" }
23-
nu-utils = { path = "../nu-utils", version = "0.80.0" }
24-
nu-color-config = { path = "../nu-color-config", version = "0.80.0" }
18+
nu-command = { path = "../nu-command", version = "0.80.1" }
19+
nu-engine = { path = "../nu-engine", version = "0.80.1" }
20+
nu-path = { path = "../nu-path", version = "0.80.1" }
21+
nu-parser = { path = "../nu-parser", version = "0.80.1" }
22+
nu-protocol = { path = "../nu-protocol", version = "0.80.1" }
23+
nu-utils = { path = "../nu-utils", version = "0.80.1" }
24+
nu-color-config = { path = "../nu-color-config", version = "0.80.1" }
2525

2626
nu-ansi-term = "0.47.0"
2727
reedline = { version = "0.19.1", features = ["bashisms", "sqlite"]}

crates/nu-cmd-lang/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-lang"
66
edition = "2021"
77
license = "MIT"
88
name = "nu-cmd-lang"
9-
version = "0.80.0"
9+
version = "0.80.1"
1010

1111
[lib]
1212
bench = false
1313

1414
[dependencies]
15-
nu-color-config = { path = "../nu-color-config", version = "0.80.0" }
16-
nu-engine = { path = "../nu-engine", version = "0.80.0" }
17-
nu-parser = { path = "../nu-parser", version = "0.80.0" }
18-
nu-protocol = { path = "../nu-protocol", version = "0.80.0" }
19-
nu-utils = { path = "../nu-utils", version = "0.80.0" }
15+
nu-color-config = { path = "../nu-color-config", version = "0.80.1" }
16+
nu-engine = { path = "../nu-engine", version = "0.80.1" }
17+
nu-parser = { path = "../nu-parser", version = "0.80.1" }
18+
nu-protocol = { path = "../nu-protocol", version = "0.80.1" }
19+
nu-utils = { path = "../nu-utils", version = "0.80.1" }
2020

2121
nu-ansi-term = "0.47.0"
2222

@@ -29,4 +29,4 @@ shadow-rs = { version = "0.21.0", default-features = false }
2929
shadow-rs = { version = "0.21.0", default-features = false }
3030

3131
[dev-dependencies]
32-
nu-test-support = { path="../nu-test-support", version = "0.80.0" }
32+
nu-test-support = { path="../nu-test-support", version = "0.80.1" }

crates/nu-color-config/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-color-confi
55
edition = "2021"
66
license = "MIT"
77
name = "nu-color-config"
8-
version = "0.80.0"
8+
version = "0.80.1"
99

1010
[lib]
1111
bench = false
1212

1313
[dependencies]
1414
serde = { version="1.0.123", features=["derive"] }
1515

16-
nu-protocol = { path = "../nu-protocol", version = "0.80.0" }
16+
nu-protocol = { path = "../nu-protocol", version = "0.80.1" }
1717
nu-ansi-term = "0.47.0"
18-
nu-utils = { path = "../nu-utils", version = "0.80.0" }
19-
nu-engine = { path = "../nu-engine", version = "0.80.0" }
20-
nu-json = { path="../nu-json", version = "0.80.0" }
18+
nu-utils = { path = "../nu-utils", version = "0.80.1" }
19+
nu-engine = { path = "../nu-engine", version = "0.80.1" }
20+
nu-json = { path="../nu-json", version = "0.80.1" }
2121

2222
[dev-dependencies]
23-
nu-test-support = { path="../nu-test-support", version = "0.80.0" }
23+
nu-test-support = { path="../nu-test-support", version = "0.80.1" }

crates/nu-command/Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,28 @@ edition = "2021"
55
license = "MIT"
66
name = "nu-command"
77
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-command"
8-
version = "0.80.0"
8+
version = "0.80.1"
99

1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

1212
[lib]
1313
bench = false
1414

1515
[dependencies]
16-
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.80.0" }
17-
nu-color-config = { path = "../nu-color-config", version = "0.80.0" }
18-
nu-engine = { path = "../nu-engine", version = "0.80.0" }
19-
nu-explore = { path = "../nu-explore", version = "0.80.0" }
20-
nu-glob = { path = "../nu-glob", version = "0.80.0" }
21-
nu-json = { path = "../nu-json", version = "0.80.0" }
22-
nu-parser = { path = "../nu-parser", version = "0.80.0" }
23-
nu-path = { path = "../nu-path", version = "0.80.0" }
24-
nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.80.0" }
25-
nu-protocol = { path = "../nu-protocol", version = "0.80.0" }
26-
nu-system = { path = "../nu-system", version = "0.80.0" }
27-
nu-table = { path = "../nu-table", version = "0.80.0" }
28-
nu-term-grid = { path = "../nu-term-grid", version = "0.80.0" }
29-
nu-utils = { path = "../nu-utils", version = "0.80.0" }
16+
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.80.1" }
17+
nu-color-config = { path = "../nu-color-config", version = "0.80.1" }
18+
nu-engine = { path = "../nu-engine", version = "0.80.1" }
19+
nu-explore = { path = "../nu-explore", version = "0.80.1" }
20+
nu-glob = { path = "../nu-glob", version = "0.80.1" }
21+
nu-json = { path = "../nu-json", version = "0.80.1" }
22+
nu-parser = { path = "../nu-parser", version = "0.80.1" }
23+
nu-path = { path = "../nu-path", version = "0.80.1" }
24+
nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.80.1" }
25+
nu-protocol = { path = "../nu-protocol", version = "0.80.1" }
26+
nu-system = { path = "../nu-system", version = "0.80.1" }
27+
nu-table = { path = "../nu-table", version = "0.80.1" }
28+
nu-term-grid = { path = "../nu-term-grid", version = "0.80.1" }
29+
nu-utils = { path = "../nu-utils", version = "0.80.1" }
3030
num-format = { version = "0.4.3" }
3131
nu-ansi-term = "0.47.0"
3232

@@ -167,7 +167,7 @@ trash-support = ["trash"]
167167
which-support = ["which"]
168168

169169
[dev-dependencies]
170-
nu-test-support = { path = "../nu-test-support", version = "0.80.0" }
170+
nu-test-support = { path = "../nu-test-support", version = "0.80.1" }
171171
mockito = "1.0.0"
172172

173173
dirs-next = "2.0.0"

crates/nu-engine/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-engine"
55
edition = "2021"
66
license = "MIT"
77
name = "nu-engine"
8-
version = "0.80.0"
8+
version = "0.80.1"
99

1010
[lib]
1111
bench = false
1212

1313
[dependencies]
14-
nu-protocol = { path = "../nu-protocol", features = ["plugin"], version = "0.80.0" }
15-
nu-path = { path = "../nu-path", version = "0.80.0" }
16-
nu-glob = { path = "../nu-glob", version = "0.80.0" }
17-
nu-utils = { path = "../nu-utils", version = "0.80.0" }
14+
nu-protocol = { path = "../nu-protocol", features = ["plugin"], version = "0.80.1" }
15+
nu-path = { path = "../nu-path", version = "0.80.1" }
16+
nu-glob = { path = "../nu-glob", version = "0.80.1" }
17+
nu-utils = { path = "../nu-utils", version = "0.80.1" }
1818

1919
chrono = { version="0.4.23", features = ["std"], default-features = false }
2020
serde = {version = "1.0.143", default-features = false }

crates/nu-explore/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-explore"
55
edition = "2021"
66
license = "MIT"
77
name = "nu-explore"
8-
version = "0.80.0"
8+
version = "0.80.1"
99

1010
[lib]
1111
bench = false
1212

1313
[dependencies]
1414
nu-ansi-term = "0.47.0"
15-
nu-protocol = { path = "../nu-protocol", version = "0.80.0" }
16-
nu-parser = { path = "../nu-parser", version = "0.80.0" }
17-
nu-color-config = { path = "../nu-color-config", version = "0.80.0" }
18-
nu-engine = { path = "../nu-engine", version = "0.80.0" }
19-
nu-table = { path = "../nu-table", version = "0.80.0" }
20-
nu-json = { path = "../nu-json", version = "0.80.0" }
21-
nu-utils = { path = "../nu-utils", version = "0.80.0" }
15+
nu-protocol = { path = "../nu-protocol", version = "0.80.1" }
16+
nu-parser = { path = "../nu-parser", version = "0.80.1" }
17+
nu-color-config = { path = "../nu-color-config", version = "0.80.1" }
18+
nu-engine = { path = "../nu-engine", version = "0.80.1" }
19+
nu-table = { path = "../nu-table", version = "0.80.1" }
20+
nu-json = { path = "../nu-json", version = "0.80.1" }
21+
nu-utils = { path = "../nu-utils", version = "0.80.1" }
2222

2323
terminal_size = "0.2.1"
2424
strip-ansi-escapes = "0.1.1"

crates/nu-glob/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nu-glob"
3-
version = "0.80.0"
3+
version = "0.80.1"
44
authors = ["The Nushell Project Developers", "The Rust Project Developers"]
55
license = "MIT/Apache-2.0"
66
description = """

crates/nu-json/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-json"
55
edition = "2021"
66
license = "MIT"
77
name = "nu-json"
8-
version = "0.80.0"
8+
version = "0.80.1"
99

1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1111

@@ -22,5 +22,5 @@ num-traits = "0.2.14"
2222
serde = "1.0"
2323

2424
[dev-dependencies]
25-
# nu-path = { path="../nu-path", version = "0.80.0" }
25+
# nu-path = { path="../nu-path", version = "0.80.1" }
2626
# serde_json = "1.0"

crates/nu-parser/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-parser"
55
edition = "2021"
66
license = "MIT"
77
name = "nu-parser"
8-
version = "0.80.0"
8+
version = "0.80.1"
99

1010
[lib]
1111
bench = false
@@ -17,10 +17,10 @@ itertools = "0.10"
1717
miette = {version = "5.7.0", features = ["fancy-no-backtrace"]}
1818
thiserror = "1.0.31"
1919
serde_json = "1.0"
20-
nu-path = {path = "../nu-path", version = "0.80.0" }
21-
nu-protocol = { path = "../nu-protocol", version = "0.80.0" }
22-
nu-plugin = { path = "../nu-plugin", optional = true, version = "0.80.0" }
23-
nu-engine = { path = "../nu-engine", version = "0.80.0" }
20+
nu-path = {path = "../nu-path", version = "0.80.1" }
21+
nu-protocol = { path = "../nu-protocol", version = "0.80.1" }
22+
nu-plugin = { path = "../nu-plugin", optional = true, version = "0.80.1" }
23+
nu-engine = { path = "../nu-engine", version = "0.80.1" }
2424
log = "0.4"
2525

2626
[dev-dependencies]

0 commit comments

Comments
 (0)