Skip to content

Commit 4eddb18

Browse files
committed
Update version to 0.105.2-nightly.30
1 parent 33a2b98 commit 4eddb18

File tree

41 files changed

+219
-456
lines changed

Some content is hidden

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

41 files changed

+219
-456
lines changed

.github/workflows/audit.yml

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

.github/workflows/ci.yml

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

Cargo.toml

Lines changed: 21 additions & 21 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.86.0"
14-
version = "0.105.2"
14+
version = "0.105.2-nightly.30"
1515

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

@@ -203,23 +203,23 @@ used_underscore_binding = "warn"
203203
workspace = true
204204

205205
[dependencies]
206-
nu-cli = { path = "./crates/nu-cli", version = "0.105.2" }
207-
nu-cmd-base = { path = "./crates/nu-cmd-base", version = "0.105.2" }
208-
nu-cmd-extra = { path = "./crates/nu-cmd-extra", version = "0.105.2" }
209-
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.105.2" }
210-
nu-cmd-plugin = { path = "./crates/nu-cmd-plugin", version = "0.105.2", optional = true }
211-
nu-command = { path = "./crates/nu-command", version = "0.105.2", default-features = false, features = ["os"] }
212-
nu-engine = { path = "./crates/nu-engine", version = "0.105.2" }
213-
nu-experimental = { path = "./crates/nu-experimental", version = "0.105.2" }
214-
nu-explore = { path = "./crates/nu-explore", version = "0.105.2" }
215-
nu-lsp = { path = "./crates/nu-lsp/", version = "0.105.2" }
216-
nu-parser = { path = "./crates/nu-parser", version = "0.105.2" }
217-
nu-path = { path = "./crates/nu-path", version = "0.105.2" }
218-
nu-plugin-engine = { path = "./crates/nu-plugin-engine", optional = true, version = "0.105.2" }
219-
nu-protocol = { path = "./crates/nu-protocol", version = "0.105.2" }
220-
nu-std = { path = "./crates/nu-std", version = "0.105.2" }
221-
nu-system = { path = "./crates/nu-system", version = "0.105.2" }
222-
nu-utils = { path = "./crates/nu-utils", version = "0.105.2" }
206+
nu-cli = { path = "./crates/nu-cli", version = "0.105.2-nightly.30" }
207+
nu-cmd-base = { path = "./crates/nu-cmd-base", version = "0.105.2-nightly.30" }
208+
nu-cmd-extra = { path = "./crates/nu-cmd-extra", version = "0.105.2-nightly.30" }
209+
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.105.2-nightly.30" }
210+
nu-cmd-plugin = { path = "./crates/nu-cmd-plugin", version = "0.105.2-nightly.30", optional = true }
211+
nu-command = { path = "./crates/nu-command", version = "0.105.2-nightly.30", default-features = false, features = ["os"] }
212+
nu-engine = { path = "./crates/nu-engine", version = "0.105.2-nightly.30" }
213+
nu-experimental = { path = "./crates/nu-experimental", version = "0.105.2-nightly.30" }
214+
nu-explore = { path = "./crates/nu-explore", version = "0.105.2-nightly.30" }
215+
nu-lsp = { path = "./crates/nu-lsp/", version = "0.105.2-nightly.30" }
216+
nu-parser = { path = "./crates/nu-parser", version = "0.105.2-nightly.30" }
217+
nu-path = { path = "./crates/nu-path", version = "0.105.2-nightly.30" }
218+
nu-plugin-engine = { path = "./crates/nu-plugin-engine", optional = true, version = "0.105.2-nightly.30" }
219+
nu-protocol = { path = "./crates/nu-protocol", version = "0.105.2-nightly.30" }
220+
nu-std = { path = "./crates/nu-std", version = "0.105.2-nightly.30" }
221+
nu-system = { path = "./crates/nu-system", version = "0.105.2-nightly.30" }
222+
nu-utils = { path = "./crates/nu-utils", version = "0.105.2-nightly.30" }
223223
reedline = { workspace = true, features = ["bashisms", "sqlite"] }
224224

225225
crossterm = { workspace = true }
@@ -248,9 +248,9 @@ nix = { workspace = true, default-features = false, features = [
248248
] }
249249

250250
[dev-dependencies]
251-
nu-test-support = { path = "./crates/nu-test-support", version = "0.105.2" }
252-
nu-plugin-protocol = { path = "./crates/nu-plugin-protocol", version = "0.105.2" }
253-
nu-plugin-core = { path = "./crates/nu-plugin-core", version = "0.105.2" }
251+
nu-test-support = { path = "./crates/nu-test-support", version = "0.105.2-nightly.30" }
252+
nu-plugin-protocol = { path = "./crates/nu-plugin-protocol", version = "0.105.2-nightly.30" }
253+
nu-plugin-core = { path = "./crates/nu-plugin-core", version = "0.105.2-nightly.30" }
254254
assert_cmd = "2.0"
255255
dirs = { workspace = true }
256256
tango-bench = "0.6"

crates/nu-cli/Cargo.toml

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

1010
[lib]
1111
bench = false
1212

1313
[dev-dependencies]
14-
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.105.2" }
15-
nu-command = { path = "../nu-command", version = "0.105.2" }
16-
nu-std = { path = "../nu-std", version = "0.105.2" }
17-
nu-test-support = { path = "../nu-test-support", version = "0.105.2" }
14+
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.105.2-nightly.30" }
15+
nu-command = { path = "../nu-command", version = "0.105.2-nightly.30" }
16+
nu-std = { path = "../nu-std", version = "0.105.2-nightly.30" }
17+
nu-test-support = { path = "../nu-test-support", version = "0.105.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.105.2" }
23-
nu-engine = { path = "../nu-engine", version = "0.105.2", features = ["os"] }
24-
nu-glob = { path = "../nu-glob", version = "0.105.2" }
25-
nu-path = { path = "../nu-path", version = "0.105.2" }
26-
nu-parser = { path = "../nu-parser", version = "0.105.2" }
27-
nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.105.2", optional = true }
28-
nu-protocol = { path = "../nu-protocol", version = "0.105.2", features = ["os"] }
29-
nu-utils = { path = "../nu-utils", version = "0.105.2" }
30-
nu-color-config = { path = "../nu-color-config", version = "0.105.2" }
22+
nu-cmd-base = { path = "../nu-cmd-base", version = "0.105.2-nightly.30" }
23+
nu-engine = { path = "../nu-engine", version = "0.105.2-nightly.30", features = ["os"] }
24+
nu-glob = { path = "../nu-glob", version = "0.105.2-nightly.30" }
25+
nu-path = { path = "../nu-path", version = "0.105.2-nightly.30" }
26+
nu-parser = { path = "../nu-parser", version = "0.105.2-nightly.30" }
27+
nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.105.2-nightly.30", optional = true }
28+
nu-protocol = { path = "../nu-protocol", version = "0.105.2-nightly.30", features = ["os"] }
29+
nu-utils = { path = "../nu-utils", version = "0.105.2-nightly.30" }
30+
nu-color-config = { path = "../nu-color-config", version = "0.105.2-nightly.30" }
3131
nu-ansi-term = { workspace = true }
3232
reedline = { workspace = true, features = ["bashisms", "sqlite"] }
3333

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.105.2"
8+
version = "0.105.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.105.2", default-features = false }
17-
nu-parser = { path = "../nu-parser", version = "0.105.2" }
18-
nu-path = { path = "../nu-path", version = "0.105.2" }
19-
nu-protocol = { path = "../nu-protocol", version = "0.105.2", default-features = false }
16+
nu-engine = { path = "../nu-engine", version = "0.105.2-nightly.30", default-features = false }
17+
nu-parser = { path = "../nu-parser", version = "0.105.2-nightly.30" }
18+
nu-path = { path = "../nu-path", version = "0.105.2-nightly.30" }
19+
nu-protocol = { path = "../nu-protocol", version = "0.105.2-nightly.30", default-features = false }
2020

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

0 commit comments

Comments
 (0)