Skip to content

Commit 1255c6c

Browse files
committed
Update version to 0.109.2-nightly.30
1 parent 24b2f11 commit 1255c6c

File tree

42 files changed

+228
-476
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+228
-476
lines changed

.github/workflows/audit.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 0 additions & 220 deletions
This file was deleted.

Cargo.toml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT"
1111
name = "nu"
1212
repository = "https://github.com/nushell/nushell"
1313
rust-version = "1.90.0"
14-
version = "0.109.2"
14+
version = "0.109.2-nightly.30"
1515

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

@@ -220,24 +220,24 @@ result_large_err = "allow"
220220
workspace = true
221221

222222
[dependencies]
223-
nu-cli = { path = "./crates/nu-cli", version = "0.109.2" }
224-
nu-cmd-base = { path = "./crates/nu-cmd-base", version = "0.109.2" }
225-
nu-cmd-extra = { path = "./crates/nu-cmd-extra", version = "0.109.2" }
226-
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.109.2" }
227-
nu-cmd-plugin = { path = "./crates/nu-cmd-plugin", version = "0.109.2", optional = true }
228-
nu-command = { path = "./crates/nu-command", version = "0.109.2", default-features = false, features = ["os"] }
229-
nu-engine = { path = "./crates/nu-engine", version = "0.109.2" }
230-
nu-experimental = { path = "./crates/nu-experimental", version = "0.109.2" }
231-
nu-explore = { path = "./crates/nu-explore", version = "0.109.2" }
232-
nu-lsp = { path = "./crates/nu-lsp/", version = "0.109.2" }
233-
nu-parser = { path = "./crates/nu-parser", version = "0.109.2" }
234-
nu-path = { path = "./crates/nu-path", version = "0.109.2" }
235-
nu-plugin-engine = { path = "./crates/nu-plugin-engine", optional = true, version = "0.109.2" }
236-
nu-protocol = { path = "./crates/nu-protocol", version = "0.109.2" }
237-
nu-std = { path = "./crates/nu-std", version = "0.109.2" }
238-
nu-system = { path = "./crates/nu-system", version = "0.109.2" }
239-
nu-utils = { path = "./crates/nu-utils", version = "0.109.2" }
240-
nu-mcp = { path = "./crates/nu-mcp", version = "0.109.2", optional = true }
223+
nu-cli = { path = "./crates/nu-cli", version = "0.109.2-nightly.30" }
224+
nu-cmd-base = { path = "./crates/nu-cmd-base", version = "0.109.2-nightly.30" }
225+
nu-cmd-extra = { path = "./crates/nu-cmd-extra", version = "0.109.2-nightly.30" }
226+
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.109.2-nightly.30" }
227+
nu-cmd-plugin = { path = "./crates/nu-cmd-plugin", version = "0.109.2-nightly.30", optional = true }
228+
nu-command = { path = "./crates/nu-command", version = "0.109.2-nightly.30", default-features = false, features = ["os"] }
229+
nu-engine = { path = "./crates/nu-engine", version = "0.109.2-nightly.30" }
230+
nu-experimental = { path = "./crates/nu-experimental", version = "0.109.2-nightly.30" }
231+
nu-explore = { path = "./crates/nu-explore", version = "0.109.2-nightly.30" }
232+
nu-lsp = { path = "./crates/nu-lsp/", version = "0.109.2-nightly.30" }
233+
nu-parser = { path = "./crates/nu-parser", version = "0.109.2-nightly.30" }
234+
nu-path = { path = "./crates/nu-path", version = "0.109.2-nightly.30" }
235+
nu-plugin-engine = { path = "./crates/nu-plugin-engine", optional = true, version = "0.109.2-nightly.30" }
236+
nu-protocol = { path = "./crates/nu-protocol", version = "0.109.2-nightly.30" }
237+
nu-std = { path = "./crates/nu-std", version = "0.109.2-nightly.30" }
238+
nu-system = { path = "./crates/nu-system", version = "0.109.2-nightly.30" }
239+
nu-utils = { path = "./crates/nu-utils", version = "0.109.2-nightly.30" }
240+
nu-mcp = { path = "./crates/nu-mcp", version = "0.109.2-nightly.30", optional = true }
241241
reedline = { workspace = true, features = ["bashisms"] }
242242

243243
crossterm = { workspace = true }
@@ -266,9 +266,9 @@ nix = { workspace = true, default-features = false, features = [
266266
] }
267267

268268
[dev-dependencies]
269-
nu-test-support = { path = "./crates/nu-test-support", version = "0.109.2" }
270-
nu-plugin-protocol = { path = "./crates/nu-plugin-protocol", version = "0.109.2" }
271-
nu-plugin-core = { path = "./crates/nu-plugin-core", version = "0.109.2" }
269+
nu-test-support = { path = "./crates/nu-test-support", version = "0.109.2-nightly.30" }
270+
nu-plugin-protocol = { path = "./crates/nu-plugin-protocol", version = "0.109.2-nightly.30" }
271+
nu-plugin-core = { path = "./crates/nu-plugin-core", version = "0.109.2-nightly.30" }
272272
assert_cmd = "2.0"
273273
dirs = { workspace = true }
274274
tango-bench = "0.6"

crates/nu-cli/Cargo.toml

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

1010
[lib]
1111
bench = false
1212

1313
[dev-dependencies]
14-
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.109.2" }
15-
nu-command = { path = "../nu-command", version = "0.109.2" }
16-
nu-std = { path = "../nu-std", version = "0.109.2" }
17-
nu-test-support = { path = "../nu-test-support", version = "0.109.2" }
14+
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.109.2-nightly.30" }
15+
nu-command = { path = "../nu-command", version = "0.109.2-nightly.30" }
16+
nu-std = { path = "../nu-std", version = "0.109.2-nightly.30" }
17+
nu-test-support = { path = "../nu-test-support", version = "0.109.2-nightly.30" }
1818
rstest = { workspace = true, default-features = false }
1919
tempfile = { workspace = true }
2020

2121
[dependencies]
22-
nu-cmd-base = { path = "../nu-cmd-base", version = "0.109.2" }
23-
nu-engine = { path = "../nu-engine", version = "0.109.2", features = ["os"] }
24-
nu-glob = { path = "../nu-glob", version = "0.109.2" }
25-
nu-path = { path = "../nu-path", version = "0.109.2" }
26-
nu-parser = { path = "../nu-parser", version = "0.109.2" }
27-
nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.109.2", optional = true }
28-
nu-protocol = { path = "../nu-protocol", version = "0.109.2", features = ["os"] }
29-
nu-utils = { path = "../nu-utils", version = "0.109.2" }
30-
nu-color-config = { path = "../nu-color-config", version = "0.109.2" }
31-
nu-experimental = { path = "../nu-experimental", version = "0.109.2" }
22+
nu-cmd-base = { path = "../nu-cmd-base", version = "0.109.2-nightly.30" }
23+
nu-engine = { path = "../nu-engine", version = "0.109.2-nightly.30", features = ["os"] }
24+
nu-glob = { path = "../nu-glob", version = "0.109.2-nightly.30" }
25+
nu-path = { path = "../nu-path", version = "0.109.2-nightly.30" }
26+
nu-parser = { path = "../nu-parser", version = "0.109.2-nightly.30" }
27+
nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.109.2-nightly.30", optional = true }
28+
nu-protocol = { path = "../nu-protocol", version = "0.109.2-nightly.30", features = ["os"] }
29+
nu-utils = { path = "../nu-utils", version = "0.109.2-nightly.30" }
30+
nu-color-config = { path = "../nu-color-config", version = "0.109.2-nightly.30" }
31+
nu-experimental = { path = "../nu-experimental", version = "0.109.2-nightly.30" }
3232
nu-ansi-term = { workspace = true }
3333
reedline = { workspace = true, features = ["bashisms"] }
3434

crates/nu-cmd-base/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ edition = "2024"
55
license = "MIT"
66
name = "nu-cmd-base"
77
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-base"
8-
version = "0.109.2"
8+
version = "0.109.2-nightly.30"
99

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

1212
[lints]
1313
workspace = true
1414

1515
[dependencies]
16-
nu-engine = { path = "../nu-engine", version = "0.109.2", default-features = false }
17-
nu-parser = { path = "../nu-parser", version = "0.109.2" }
18-
nu-path = { path = "../nu-path", version = "0.109.2" }
19-
nu-protocol = { path = "../nu-protocol", version = "0.109.2", default-features = false }
16+
nu-engine = { path = "../nu-engine", version = "0.109.2-nightly.30", default-features = false }
17+
nu-parser = { path = "../nu-parser", version = "0.109.2-nightly.30" }
18+
nu-path = { path = "../nu-path", version = "0.109.2-nightly.30" }
19+
nu-protocol = { path = "../nu-protocol", version = "0.109.2-nightly.30", default-features = false }
2020

2121
indexmap = { workspace = true }
2222
miette = { workspace = true }

0 commit comments

Comments
 (0)