Skip to content

Commit fb419ec

Browse files
committed
Merge branch 'main' into restrict_closure_syntax
2 parents c513fce + 57ce6a7 commit fb419ec

29 files changed

Lines changed: 188 additions & 151 deletions

File tree

Cargo.lock

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

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.76.1"
13+
version = "0.77.1"
1414

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

@@ -46,23 +46,23 @@ crossterm = "0.24.0"
4646
ctrlc = "3.2.1"
4747
log = "0.4"
4848
miette = { version = "5.5.0", features = ["fancy-no-backtrace"] }
49-
nu-ansi-term = "0.47.0"
50-
nu-cli = { path = "./crates/nu-cli", version = "0.76.1" }
51-
nu-color-config = { path = "./crates/nu-color-config", version = "0.76.1" }
52-
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.76.1" }
53-
nu-command = { path = "./crates/nu-command", version = "0.76.1" }
54-
nu-engine = { path = "./crates/nu-engine", version = "0.76.1" }
55-
nu-json = { path = "./crates/nu-json", version = "0.76.1" }
56-
nu-parser = { path = "./crates/nu-parser", version = "0.76.1" }
57-
nu-path = { path = "./crates/nu-path", version = "0.76.1" }
58-
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.76.1" }
59-
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.76.1" }
60-
nu-protocol = { path = "./crates/nu-protocol", version = "0.76.1" }
61-
nu-system = { path = "./crates/nu-system", version = "0.76.1" }
62-
nu-table = { path = "./crates/nu-table", version = "0.76.1" }
63-
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.76.1" }
64-
nu-utils = { path = "./crates/nu-utils", version = "0.76.1" }
49+
nu-cli = { path = "./crates/nu-cli", version = "0.77.1" }
50+
nu-color-config = { path = "./crates/nu-color-config", version = "0.77.1" }
51+
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.77.1" }
52+
nu-command = { path = "./crates/nu-command", version = "0.77.1" }
53+
nu-engine = { path = "./crates/nu-engine", version = "0.77.1" }
54+
nu-json = { path = "./crates/nu-json", version = "0.77.1" }
55+
nu-parser = { path = "./crates/nu-parser", version = "0.77.1" }
56+
nu-path = { path = "./crates/nu-path", version = "0.77.1" }
57+
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.77.1" }
58+
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.77.1" }
59+
nu-protocol = { path = "./crates/nu-protocol", version = "0.77.1" }
60+
nu-system = { path = "./crates/nu-system", version = "0.77.1" }
61+
nu-table = { path = "./crates/nu-table", version = "0.77.1" }
62+
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.77.1" }
63+
nu-utils = { path = "./crates/nu-utils", version = "0.77.1" }
6564

65+
nu-ansi-term = "0.47.0"
6666
reedline = { version = "0.17.0", features = ["bashisms", "sqlite"] }
6767

6868
rayon = "1.7.0"
@@ -89,7 +89,7 @@ nix = { version = "0.26", default-features = false, features = [
8989
atty = "0.2"
9090

9191
[dev-dependencies]
92-
nu-test-support = { path = "./crates/nu-test-support", version = "0.76.1" }
92+
nu-test-support = { path = "./crates/nu-test-support", version = "0.77.1" }
9393
tempfile = "3.4.0"
9494
assert_cmd = "2.0.2"
9595
criterion = "0.4"

crates/nu-cli/Cargo.toml

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

1010
[lib]
1111
bench = false
1212

1313
[dev-dependencies]
14-
nu-test-support = { path = "../nu-test-support", version = "0.76.1" }
15-
nu-command = { path = "../nu-command", version = "0.76.1" }
14+
nu-test-support = { path = "../nu-test-support", version = "0.77.1" }
15+
nu-command = { path = "../nu-command", version = "0.77.1" }
1616
rstest = { version = "0.16.0", default-features = false }
1717

1818
[dependencies]
19-
nu-engine = { path = "../nu-engine", version = "0.76.1" }
20-
nu-path = { path = "../nu-path", version = "0.76.1" }
21-
nu-parser = { path = "../nu-parser", version = "0.76.1" }
22-
nu-protocol = { path = "../nu-protocol", version = "0.76.1" }
23-
nu-utils = { path = "../nu-utils", version = "0.76.1" }
24-
nu-ansi-term = "0.47.0"
25-
nu-color-config = { path = "../nu-color-config", version = "0.76.1" }
19+
nu-engine = { path = "../nu-engine", version = "0.77.1" }
20+
nu-path = { path = "../nu-path", version = "0.77.1" }
21+
nu-parser = { path = "../nu-parser", version = "0.77.1" }
22+
nu-protocol = { path = "../nu-protocol", version = "0.77.1" }
23+
nu-utils = { path = "../nu-utils", version = "0.77.1" }
24+
nu-color-config = { path = "../nu-color-config", version = "0.77.1" }
2625

26+
nu-ansi-term = "0.47.0"
2727
reedline = { version = "0.17.0", features = ["bashisms", "sqlite"] }
2828

2929
atty = "0.2.14"

crates/nu-cmd-lang/Cargo.toml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,19 @@ 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.76.1"
9+
version = "0.77.1"
1010

1111
[lib]
1212
bench = false
1313

1414
[dependencies]
15+
nu-color-config = { path = "../nu-color-config", version = "0.77.1" }
16+
nu-engine = { path = "../nu-engine", version = "0.77.1" }
17+
nu-parser = { path = "../nu-parser", version = "0.77.1" }
18+
nu-protocol = { path = "../nu-protocol", version = "0.77.1" }
19+
nu-utils = { path = "../nu-utils", version = "0.77.1" }
20+
1521
nu-ansi-term = "0.47.0"
16-
nu-color-config = { path = "../nu-color-config", version = "0.76.1" }
17-
nu-engine = { path = "../nu-engine", version = "0.76.1" }
18-
nu-parser = { path = "../nu-parser", version = "0.76.1" }
19-
nu-protocol = { path = "../nu-protocol", version = "0.76.1" }
20-
nu-utils = { path = "../nu-utils", version = "0.76.1" }
2122

2223
fancy-regex = "0.11.0"
2324
itertools = "0.10.0"
@@ -28,4 +29,4 @@ shadow-rs = { version = "0.21.0", default-features = false }
2829
shadow-rs = { version = "0.21.0", default-features = false }
2930

3031
[dev-dependencies]
31-
nu-test-support = { path="../nu-test-support", version = "0.76.1" }
32+
nu-test-support = { path="../nu-test-support", version = "0.77.1" }

crates/nu-color-config/Cargo.toml

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

1010
[lib]
1111
bench = false
@@ -15,11 +15,11 @@ serde = { version="1.0.123", features=["derive"] }
1515
# used only for text_style Alignments
1616
tabled = { version = "0.10.0", features = ["color"], default-features = false }
1717

18-
nu-protocol = { path = "../nu-protocol", version = "0.76.1" }
18+
nu-protocol = { path = "../nu-protocol", version = "0.77.1" }
1919
nu-ansi-term = "0.47.0"
20-
nu-utils = { path = "../nu-utils", version = "0.76.1" }
21-
nu-engine = { path = "../nu-engine", version = "0.76.1" }
22-
nu-json = { path="../nu-json", version = "0.76.1" }
20+
nu-utils = { path = "../nu-utils", version = "0.77.1" }
21+
nu-engine = { path = "../nu-engine", version = "0.77.1" }
22+
nu-json = { path="../nu-json", version = "0.77.1" }
2323

2424
[dev-dependencies]
25-
nu-test-support = { path="../nu-test-support", version = "0.76.1" }
25+
nu-test-support = { path="../nu-test-support", version = "0.77.1" }

0 commit comments

Comments
 (0)