Skip to content

Commit 1291b64

Browse files
authored
bump to 0.73 (#7542)
# Description _(Thank you for improving Nushell. Please, check our [contributing guide](../CONTRIBUTING.md) and talk to the core team before making major changes.)_ _(Description of your pull request goes here. **Provide examples and/or screenshots** if your changes affect the user experience.)_ # 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` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass # 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 91df6c2 commit 1291b64

33 files changed

Lines changed: 176 additions & 176 deletions

File tree

Cargo.lock

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 16 additions & 16 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.72.2"
13+
version = "0.73.0"
1414

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

@@ -45,20 +45,20 @@ ctrlc = "3.2.1"
4545
log = "0.4"
4646
miette = { version = "5.1.0", features = ["fancy-no-backtrace"] }
4747
nu-ansi-term = "0.46.0"
48-
nu-cli = { path="./crates/nu-cli", version = "0.72.2" }
49-
nu-color-config = { path = "./crates/nu-color-config", version = "0.72.2" }
50-
nu-command = { path="./crates/nu-command", version = "0.72.2" }
51-
nu-engine = { path="./crates/nu-engine", version = "0.72.2" }
52-
nu-json = { path="./crates/nu-json", version = "0.72.2" }
53-
nu-parser = { path="./crates/nu-parser", version = "0.72.2" }
54-
nu-path = { path="./crates/nu-path", version = "0.72.2" }
55-
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.72.2" }
56-
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.72.2" }
57-
nu-protocol = { path = "./crates/nu-protocol", version = "0.72.2" }
58-
nu-system = { path = "./crates/nu-system", version = "0.72.2" }
59-
nu-table = { path = "./crates/nu-table", version = "0.72.2" }
60-
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.72.2" }
61-
nu-utils = { path = "./crates/nu-utils", version = "0.72.2" }
48+
nu-cli = { path="./crates/nu-cli", version = "0.73.0" }
49+
nu-color-config = { path = "./crates/nu-color-config", version = "0.73.0" }
50+
nu-command = { path="./crates/nu-command", version = "0.73.0" }
51+
nu-engine = { path="./crates/nu-engine", version = "0.73.0" }
52+
nu-json = { path="./crates/nu-json", version = "0.73.0" }
53+
nu-parser = { path="./crates/nu-parser", version = "0.73.0" }
54+
nu-path = { path="./crates/nu-path", version = "0.73.0" }
55+
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.73.0" }
56+
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.73.0" }
57+
nu-protocol = { path = "./crates/nu-protocol", version = "0.73.0" }
58+
nu-system = { path = "./crates/nu-system", version = "0.73.0" }
59+
nu-table = { path = "./crates/nu-table", version = "0.73.0" }
60+
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.73.0" }
61+
nu-utils = { path = "./crates/nu-utils", version = "0.73.0" }
6262
reedline = { version = "0.14.0", features = ["bashisms", "sqlite"]}
6363

6464
rayon = "1.5.1"
@@ -80,7 +80,7 @@ nix = { version = "0.25", default-features = false, features = ["signal", "proce
8080
atty = "0.2"
8181

8282
[dev-dependencies]
83-
nu-test-support = { path="./crates/nu-test-support", version = "0.72.2" }
83+
nu-test-support = { path="./crates/nu-test-support", version = "0.73.0" }
8484
tempfile = "3.2.0"
8585
assert_cmd = "2.0.2"
8686
pretty_assertions = "1.0.0"

crates/nu-cli/Cargo.toml

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

1010
[dev-dependencies]
11-
nu-test-support = { path="../nu-test-support", version = "0.72.2" }
12-
nu-command = { path = "../nu-command", version = "0.72.2" }
11+
nu-test-support = { path="../nu-test-support", version = "0.73.0" }
12+
nu-command = { path = "../nu-command", version = "0.73.0" }
1313
rstest = {version = "0.15.0", default-features = false}
1414

1515
[dependencies]
16-
nu-engine = { path = "../nu-engine", version = "0.72.2" }
17-
nu-path = { path = "../nu-path", version = "0.72.2" }
18-
nu-parser = { path = "../nu-parser", version = "0.72.2" }
19-
nu-protocol = { path = "../nu-protocol", version = "0.72.2" }
20-
nu-utils = { path = "../nu-utils", version = "0.72.2" }
16+
nu-engine = { path = "../nu-engine", version = "0.73.0" }
17+
nu-path = { path = "../nu-path", version = "0.73.0" }
18+
nu-parser = { path = "../nu-parser", version = "0.73.0" }
19+
nu-protocol = { path = "../nu-protocol", version = "0.73.0" }
20+
nu-utils = { path = "../nu-utils", version = "0.73.0" }
2121
nu-ansi-term = "0.46.0"
22-
nu-color-config = { path = "../nu-color-config", version = "0.72.2" }
22+
nu-color-config = { path = "../nu-color-config", version = "0.73.0" }
2323
reedline = { version = "0.14.0", features = ["bashisms", "sqlite"]}
2424

2525
atty = "0.2.14"

crates/nu-color-config/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ 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.72.2"
8+
version = "0.73.0"
99

1010
[dependencies]
1111
serde = { version="1.0.123", features=["derive"] }
1212
# used only for text_style Alignments
1313
tabled = { version = "0.10.0", features = ["color"], default-features = false }
1414

15-
nu-protocol = { path = "../nu-protocol", version = "0.72.2" }
15+
nu-protocol = { path = "../nu-protocol", version = "0.73.0" }
1616
nu-ansi-term = "0.46.0"
17-
nu-utils = { path = "../nu-utils", version = "0.72.2" }
18-
nu-engine = { path = "../nu-engine", version = "0.72.2" }
19-
nu-json = { path="../nu-json", version = "0.72.2" }
17+
nu-utils = { path = "../nu-utils", version = "0.73.0" }
18+
nu-engine = { path = "../nu-engine", version = "0.73.0" }
19+
nu-json = { path="../nu-json", version = "0.73.0" }
2020

2121
[dev-dependencies]
22-
nu-test-support = { path="../nu-test-support", version = "0.72.2" }
22+
nu-test-support = { path="../nu-test-support", version = "0.73.0" }

crates/nu-command/Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,25 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-command"
55
edition = "2021"
66
license = "MIT"
77
name = "nu-command"
8-
version = "0.72.2"
8+
version = "0.73.0"
99
build = "build.rs"
1010

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

1313
[dependencies]
14-
nu-color-config = { path = "../nu-color-config", version = "0.72.2" }
15-
nu-engine = { path = "../nu-engine", version = "0.72.2" }
16-
nu-glob = { path = "../nu-glob", version = "0.72.2" }
17-
nu-json = { path = "../nu-json", version = "0.72.2" }
18-
nu-parser = { path = "../nu-parser", version = "0.72.2" }
19-
nu-path = { path = "../nu-path", version = "0.72.2" }
20-
nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.72.2" }
21-
nu-protocol = { path = "../nu-protocol", version = "0.72.2" }
22-
nu-system = { path = "../nu-system", version = "0.72.2" }
23-
nu-table = { path = "../nu-table", version = "0.72.2" }
24-
nu-term-grid = { path = "../nu-term-grid", version = "0.72.2" }
25-
nu-utils = { path = "../nu-utils", version = "0.72.2" }
26-
nu-explore = { path = "../nu-explore", version = "0.72.2" }
14+
nu-color-config = { path = "../nu-color-config", version = "0.73.0" }
15+
nu-engine = { path = "../nu-engine", version = "0.73.0" }
16+
nu-glob = { path = "../nu-glob", version = "0.73.0" }
17+
nu-json = { path = "../nu-json", version = "0.73.0" }
18+
nu-parser = { path = "../nu-parser", version = "0.73.0" }
19+
nu-path = { path = "../nu-path", version = "0.73.0" }
20+
nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.73.0" }
21+
nu-protocol = { path = "../nu-protocol", version = "0.73.0" }
22+
nu-system = { path = "../nu-system", version = "0.73.0" }
23+
nu-table = { path = "../nu-table", version = "0.73.0" }
24+
nu-term-grid = { path = "../nu-term-grid", version = "0.73.0" }
25+
nu-utils = { path = "../nu-utils", version = "0.73.0" }
26+
nu-explore = { path = "../nu-explore", version = "0.73.0" }
2727
nu-ansi-term = "0.46.0"
2828
num-format = { version = "0.4.3" }
2929

@@ -156,7 +156,7 @@ sqlite = ["rusqlite"] # TODO: given that rusqlite is included in reedline, shoul
156156
shadow-rs = { version = "0.16.1", default-features = false }
157157

158158
[dev-dependencies]
159-
nu-test-support = { path = "../nu-test-support", version = "0.72.2" }
159+
nu-test-support = { path = "../nu-test-support", version = "0.73.0" }
160160

161161
hamcrest2 = "0.3.0"
162162
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,13 +5,13 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-engine"
55
edition = "2021"
66
license = "MIT"
77
name = "nu-engine"
8-
version = "0.72.2"
8+
version = "0.73.0"
99

1010
[dependencies]
11-
nu-protocol = { path = "../nu-protocol", features = ["plugin"], version = "0.72.2" }
12-
nu-path = { path = "../nu-path", version = "0.72.2" }
13-
nu-glob = { path = "../nu-glob", version = "0.72.2" }
14-
nu-utils = { path = "../nu-utils", version = "0.72.2" }
11+
nu-protocol = { path = "../nu-protocol", features = ["plugin"], version = "0.73.0" }
12+
nu-path = { path = "../nu-path", version = "0.73.0" }
13+
nu-glob = { path = "../nu-glob", version = "0.73.0" }
14+
nu-utils = { path = "../nu-utils", version = "0.73.0" }
1515

1616
chrono = { version="0.4.23", features = ["std"], default-features = false }
1717
sysinfo ="0.26.2"

crates/nu-explore/Cargo.toml

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

1010
[dependencies]
1111
nu-ansi-term = "0.46.0"
12-
nu-protocol = { path = "../nu-protocol", version = "0.72.2" }
13-
nu-parser = { path = "../nu-parser", version = "0.72.2" }
14-
nu-color-config = { path = "../nu-color-config", version = "0.72.2" }
15-
nu-engine = { path = "../nu-engine", version = "0.72.2" }
16-
nu-table = { path = "../nu-table", version = "0.72.2" }
17-
nu-json = { path = "../nu-json", version = "0.72.2" }
18-
nu-utils = { path = "../nu-utils", version = "0.72.2" }
12+
nu-protocol = { path = "../nu-protocol", version = "0.73.0" }
13+
nu-parser = { path = "../nu-parser", version = "0.73.0" }
14+
nu-color-config = { path = "../nu-color-config", version = "0.73.0" }
15+
nu-engine = { path = "../nu-engine", version = "0.73.0" }
16+
nu-table = { path = "../nu-table", version = "0.73.0" }
17+
nu-json = { path = "../nu-json", version = "0.73.0" }
18+
nu-utils = { path = "../nu-utils", version = "0.73.0" }
1919

2020
terminal_size = "0.2.1"
2121
strip-ansi-escapes = "0.1.1"

0 commit comments

Comments
 (0)