Skip to content

Commit

Permalink
Update version to 0.101.1-nightly.15
Browse files Browse the repository at this point in the history
  • Loading branch information
hustcer committed Jan 23, 2025
1 parent 93e1217 commit 900f847
Show file tree
Hide file tree
Showing 38 changed files with 207 additions and 207 deletions.
40 changes: 20 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ license = "MIT"
name = "nu"
repository = "https://github.com/nushell/nushell"
rust-version = "1.82.0"
version = "0.101.1"
version = "0.101.1-nightly.15"

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

Expand Down Expand Up @@ -194,22 +194,22 @@ unchecked_duration_subtraction = "warn"
workspace = true

[dependencies]
nu-cli = { path = "./crates/nu-cli", version = "0.101.1" }
nu-cmd-base = { path = "./crates/nu-cmd-base", version = "0.101.1" }
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.101.1" }
nu-cmd-plugin = { path = "./crates/nu-cmd-plugin", version = "0.101.1", optional = true }
nu-cmd-extra = { path = "./crates/nu-cmd-extra", version = "0.101.1" }
nu-command = { path = "./crates/nu-command", version = "0.101.1" }
nu-engine = { path = "./crates/nu-engine", version = "0.101.1" }
nu-explore = { path = "./crates/nu-explore", version = "0.101.1" }
nu-lsp = { path = "./crates/nu-lsp/", version = "0.101.1" }
nu-parser = { path = "./crates/nu-parser", version = "0.101.1" }
nu-path = { path = "./crates/nu-path", version = "0.101.1" }
nu-plugin-engine = { path = "./crates/nu-plugin-engine", optional = true, version = "0.101.1" }
nu-protocol = { path = "./crates/nu-protocol", version = "0.101.1" }
nu-std = { path = "./crates/nu-std", version = "0.101.1" }
nu-system = { path = "./crates/nu-system", version = "0.101.1" }
nu-utils = { path = "./crates/nu-utils", version = "0.101.1" }
nu-cli = { path = "./crates/nu-cli", version = "0.101.1-nightly.15" }
nu-cmd-base = { path = "./crates/nu-cmd-base", version = "0.101.1-nightly.15" }
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.101.1-nightly.15" }
nu-cmd-plugin = { path = "./crates/nu-cmd-plugin", version = "0.101.1-nightly.15", optional = true }
nu-cmd-extra = { path = "./crates/nu-cmd-extra", version = "0.101.1-nightly.15" }
nu-command = { path = "./crates/nu-command", version = "0.101.1-nightly.15" }
nu-engine = { path = "./crates/nu-engine", version = "0.101.1-nightly.15" }
nu-explore = { path = "./crates/nu-explore", version = "0.101.1-nightly.15" }
nu-lsp = { path = "./crates/nu-lsp/", version = "0.101.1-nightly.15" }
nu-parser = { path = "./crates/nu-parser", version = "0.101.1-nightly.15" }
nu-path = { path = "./crates/nu-path", version = "0.101.1-nightly.15" }
nu-plugin-engine = { path = "./crates/nu-plugin-engine", optional = true, version = "0.101.1-nightly.15" }
nu-protocol = { path = "./crates/nu-protocol", version = "0.101.1-nightly.15" }
nu-std = { path = "./crates/nu-std", version = "0.101.1-nightly.15" }
nu-system = { path = "./crates/nu-system", version = "0.101.1-nightly.15" }
nu-utils = { path = "./crates/nu-utils", version = "0.101.1-nightly.15" }
reedline = { workspace = true, features = ["bashisms", "sqlite"] }

crossterm = { workspace = true }
Expand Down Expand Up @@ -239,9 +239,9 @@ nix = { workspace = true, default-features = false, features = [
] }

[dev-dependencies]
nu-test-support = { path = "./crates/nu-test-support", version = "0.101.1" }
nu-plugin-protocol = { path = "./crates/nu-plugin-protocol", version = "0.101.1" }
nu-plugin-core = { path = "./crates/nu-plugin-core", version = "0.101.1" }
nu-test-support = { path = "./crates/nu-test-support", version = "0.101.1-nightly.15" }
nu-plugin-protocol = { path = "./crates/nu-plugin-protocol", version = "0.101.1-nightly.15" }
nu-plugin-core = { path = "./crates/nu-plugin-core", version = "0.101.1-nightly.15" }
assert_cmd = "2.0"
dirs = { workspace = true }
tango-bench = "0.6"
Expand Down
26 changes: 13 additions & 13 deletions crates/nu-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,28 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cli"
edition = "2021"
license = "MIT"
name = "nu-cli"
version = "0.101.1"
version = "0.101.1-nightly.15"

[lib]
bench = false

[dev-dependencies]
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.101.1" }
nu-command = { path = "../nu-command", version = "0.101.1" }
nu-test-support = { path = "../nu-test-support", version = "0.101.1" }
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.101.1-nightly.15" }
nu-command = { path = "../nu-command", version = "0.101.1-nightly.15" }
nu-test-support = { path = "../nu-test-support", version = "0.101.1-nightly.15" }
rstest = { workspace = true, default-features = false }
tempfile = { workspace = true }

[dependencies]
nu-cmd-base = { path = "../nu-cmd-base", version = "0.101.1" }
nu-engine = { path = "../nu-engine", version = "0.101.1", features = ["os"] }
nu-glob = { path = "../nu-glob", version = "0.101.1" }
nu-path = { path = "../nu-path", version = "0.101.1" }
nu-parser = { path = "../nu-parser", version = "0.101.1" }
nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.101.1", optional = true }
nu-protocol = { path = "../nu-protocol", version = "0.101.1", features = ["os"] }
nu-utils = { path = "../nu-utils", version = "0.101.1" }
nu-color-config = { path = "../nu-color-config", version = "0.101.1" }
nu-cmd-base = { path = "../nu-cmd-base", version = "0.101.1-nightly.15" }
nu-engine = { path = "../nu-engine", version = "0.101.1-nightly.15", features = ["os"] }
nu-glob = { path = "../nu-glob", version = "0.101.1-nightly.15" }
nu-path = { path = "../nu-path", version = "0.101.1-nightly.15" }
nu-parser = { path = "../nu-parser", version = "0.101.1-nightly.15" }
nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.101.1-nightly.15", optional = true }
nu-protocol = { path = "../nu-protocol", version = "0.101.1-nightly.15", features = ["os"] }
nu-utils = { path = "../nu-utils", version = "0.101.1-nightly.15" }
nu-color-config = { path = "../nu-color-config", version = "0.101.1-nightly.15" }
nu-ansi-term = { workspace = true }
reedline = { workspace = true, features = ["bashisms", "sqlite"] }

Expand Down
10 changes: 5 additions & 5 deletions crates/nu-cmd-base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ edition = "2021"
license = "MIT"
name = "nu-cmd-base"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-base"
version = "0.101.1"
version = "0.101.1-nightly.15"

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

[lints]
workspace = true

[dependencies]
nu-engine = { path = "../nu-engine", version = "0.101.1", default-features = false }
nu-parser = { path = "../nu-parser", version = "0.101.1" }
nu-path = { path = "../nu-path", version = "0.101.1" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1", default-features = false }
nu-engine = { path = "../nu-engine", version = "0.101.1-nightly.15", default-features = false }
nu-parser = { path = "../nu-parser", version = "0.101.1-nightly.15" }
nu-path = { path = "../nu-path", version = "0.101.1-nightly.15" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1-nightly.15", default-features = false }

indexmap = { workspace = true }
miette = { workspace = true }
Expand Down
22 changes: 11 additions & 11 deletions crates/nu-cmd-extra/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "MIT"
name = "nu-cmd-extra"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-extra"
version = "0.101.1"
version = "0.101.1-nightly.15"

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

Expand All @@ -16,13 +16,13 @@ bench = false
workspace = true

[dependencies]
nu-cmd-base = { path = "../nu-cmd-base", version = "0.101.1" }
nu-engine = { path = "../nu-engine", version = "0.101.1", default-features = false }
nu-json = { version = "0.101.1", path = "../nu-json" }
nu-parser = { path = "../nu-parser", version = "0.101.1" }
nu-pretty-hex = { version = "0.101.1", path = "../nu-pretty-hex" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1", default-features = false }
nu-utils = { path = "../nu-utils", version = "0.101.1", default-features = false }
nu-cmd-base = { path = "../nu-cmd-base", version = "0.101.1-nightly.15" }
nu-engine = { path = "../nu-engine", version = "0.101.1-nightly.15", default-features = false }
nu-json = { version = "0.101.1-nightly.15", path = "../nu-json" }
nu-parser = { path = "../nu-parser", version = "0.101.1-nightly.15" }
nu-pretty-hex = { version = "0.101.1-nightly.15", path = "../nu-pretty-hex" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1-nightly.15", default-features = false }
nu-utils = { path = "../nu-utils", version = "0.101.1-nightly.15", default-features = false }

# Potential dependencies for extras
heck = { workspace = true }
Expand All @@ -36,6 +36,6 @@ v_htmlescape = { workspace = true }
itertools = { workspace = true }

[dev-dependencies]
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.101.1" }
nu-command = { path = "../nu-command", version = "0.101.1" }
nu-test-support = { path = "../nu-test-support", version = "0.101.1" }
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.101.1-nightly.15" }
nu-command = { path = "../nu-command", version = "0.101.1-nightly.15" }
nu-test-support = { path = "../nu-test-support", version = "0.101.1-nightly.15" }
10 changes: 5 additions & 5 deletions crates/nu-cmd-lang/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-lang"
edition = "2021"
license = "MIT"
name = "nu-cmd-lang"
version = "0.101.1"
version = "0.101.1-nightly.15"

[lib]
bench = false
Expand All @@ -15,10 +15,10 @@ bench = false
workspace = true

[dependencies]
nu-engine = { path = "../nu-engine", version = "0.101.1", default-features = false }
nu-parser = { path = "../nu-parser", version = "0.101.1" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1", default-features = false }
nu-utils = { path = "../nu-utils", version = "0.101.1", default-features = false }
nu-engine = { path = "../nu-engine", version = "0.101.1-nightly.15", default-features = false }
nu-parser = { path = "../nu-parser", version = "0.101.1-nightly.15" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1-nightly.15", default-features = false }
nu-utils = { path = "../nu-utils", version = "0.101.1-nightly.15", default-features = false }

itertools = { workspace = true }
shadow-rs = { version = "0.37", default-features = false }
Expand Down
10 changes: 5 additions & 5 deletions crates/nu-cmd-plugin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ edition = "2021"
license = "MIT"
name = "nu-cmd-plugin"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-plugin"
version = "0.101.1"
version = "0.101.1-nightly.15"

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

[lints]
workspace = true

[dependencies]
nu-engine = { path = "../nu-engine", version = "0.101.1" }
nu-path = { path = "../nu-path", version = "0.101.1" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1", features = ["plugin"] }
nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.101.1" }
nu-engine = { path = "../nu-engine", version = "0.101.1-nightly.15" }
nu-path = { path = "../nu-path", version = "0.101.1-nightly.15" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1-nightly.15", features = ["plugin"] }
nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.101.1-nightly.15" }

itertools = { workspace = true }

Expand Down
10 changes: 5 additions & 5 deletions crates/nu-color-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-color-confi
edition = "2021"
license = "MIT"
name = "nu-color-config"
version = "0.101.1"
version = "0.101.1-nightly.15"

[lib]
bench = false
Expand All @@ -14,12 +14,12 @@ bench = false
workspace = true

[dependencies]
nu-protocol = { path = "../nu-protocol", version = "0.101.1", default-features = false }
nu-engine = { path = "../nu-engine", version = "0.101.1", default-features = false }
nu-json = { path = "../nu-json", version = "0.101.1" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1-nightly.15", default-features = false }
nu-engine = { path = "../nu-engine", version = "0.101.1-nightly.15", default-features = false }
nu-json = { path = "../nu-json", version = "0.101.1-nightly.15" }
nu-ansi-term = { workspace = true }

serde = { workspace = true, features = ["derive"] }

[dev-dependencies]
nu-test-support = { path = "../nu-test-support", version = "0.101.1" }
nu-test-support = { path = "../nu-test-support", version = "0.101.1-nightly.15" }
34 changes: 17 additions & 17 deletions crates/nu-command/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "MIT"
name = "nu-command"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-command"
version = "0.101.1"
version = "0.101.1-nightly.15"

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

Expand All @@ -16,21 +16,21 @@ bench = false
workspace = true

[dependencies]
nu-cmd-base = { path = "../nu-cmd-base", version = "0.101.1" }
nu-color-config = { path = "../nu-color-config", version = "0.101.1" }
nu-engine = { path = "../nu-engine", version = "0.101.1", default-features = false }
nu-glob = { path = "../nu-glob", version = "0.101.1" }
nu-json = { path = "../nu-json", version = "0.101.1" }
nu-parser = { path = "../nu-parser", version = "0.101.1" }
nu-path = { path = "../nu-path", version = "0.101.1" }
nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.101.1" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1", default-features = false }
nu-system = { path = "../nu-system", version = "0.101.1" }
nu-table = { path = "../nu-table", version = "0.101.1" }
nu-term-grid = { path = "../nu-term-grid", version = "0.101.1" }
nu-utils = { path = "../nu-utils", version = "0.101.1", default-features = false }
nu-cmd-base = { path = "../nu-cmd-base", version = "0.101.1-nightly.15" }
nu-color-config = { path = "../nu-color-config", version = "0.101.1-nightly.15" }
nu-engine = { path = "../nu-engine", version = "0.101.1-nightly.15", default-features = false }
nu-glob = { path = "../nu-glob", version = "0.101.1-nightly.15" }
nu-json = { path = "../nu-json", version = "0.101.1-nightly.15" }
nu-parser = { path = "../nu-parser", version = "0.101.1-nightly.15" }
nu-path = { path = "../nu-path", version = "0.101.1-nightly.15" }
nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.101.1-nightly.15" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1-nightly.15", default-features = false }
nu-system = { path = "../nu-system", version = "0.101.1-nightly.15" }
nu-table = { path = "../nu-table", version = "0.101.1-nightly.15" }
nu-term-grid = { path = "../nu-term-grid", version = "0.101.1-nightly.15" }
nu-utils = { path = "../nu-utils", version = "0.101.1-nightly.15", default-features = false }
nu-ansi-term = { workspace = true }
nuon = { path = "../nuon", version = "0.101.1" }
nuon = { path = "../nuon", version = "0.101.1-nightly.15" }

alphanumeric-sort = { workspace = true }
base64 = { workspace = true }
Expand Down Expand Up @@ -188,8 +188,8 @@ sqlite = ["rusqlite"]
trash-support = ["trash"]

[dev-dependencies]
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.101.1" }
nu-test-support = { path = "../nu-test-support", version = "0.101.1" }
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.101.1-nightly.15" }
nu-test-support = { path = "../nu-test-support", version = "0.101.1-nightly.15" }

dirs = { workspace = true }
mockito = { workspace = true, default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/nu-derive-value/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
license = "MIT"
name = "nu-derive-value"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-derive-value"
version = "0.101.1"
version = "0.101.1-nightly.15"

[lib]
proc-macro = true
Expand Down
10 changes: 5 additions & 5 deletions crates/nu-engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-engine"
edition = "2021"
license = "MIT"
name = "nu-engine"
version = "0.101.1"
version = "0.101.1-nightly.15"

[lib]
bench = false
Expand All @@ -14,10 +14,10 @@ bench = false
workspace = true

[dependencies]
nu-protocol = { path = "../nu-protocol", version = "0.101.1", default-features = false }
nu-path = { path = "../nu-path", version = "0.101.1" }
nu-glob = { path = "../nu-glob", version = "0.101.1" }
nu-utils = { path = "../nu-utils", version = "0.101.1", default-features = false }
nu-protocol = { path = "../nu-protocol", version = "0.101.1-nightly.15", default-features = false }
nu-path = { path = "../nu-path", version = "0.101.1-nightly.15" }
nu-glob = { path = "../nu-glob", version = "0.101.1-nightly.15" }
nu-utils = { path = "../nu-utils", version = "0.101.1-nightly.15", default-features = false }
log = { workspace = true }

[features]
Expand Down
20 changes: 10 additions & 10 deletions crates/nu-explore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-explore"
edition = "2021"
license = "MIT"
name = "nu-explore"
version = "0.101.1"
version = "0.101.1-nightly.15"

[lib]
bench = false
Expand All @@ -14,16 +14,16 @@ bench = false
workspace = true

[dependencies]
nu-protocol = { path = "../nu-protocol", version = "0.101.1" }
nu-parser = { path = "../nu-parser", version = "0.101.1" }
nu-path = { path = "../nu-path", version = "0.101.1" }
nu-color-config = { path = "../nu-color-config", version = "0.101.1" }
nu-engine = { path = "../nu-engine", version = "0.101.1" }
nu-table = { path = "../nu-table", version = "0.101.1" }
nu-json = { path = "../nu-json", version = "0.101.1" }
nu-utils = { path = "../nu-utils", version = "0.101.1" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1-nightly.15" }
nu-parser = { path = "../nu-parser", version = "0.101.1-nightly.15" }
nu-path = { path = "../nu-path", version = "0.101.1-nightly.15" }
nu-color-config = { path = "../nu-color-config", version = "0.101.1-nightly.15" }
nu-engine = { path = "../nu-engine", version = "0.101.1-nightly.15" }
nu-table = { path = "../nu-table", version = "0.101.1-nightly.15" }
nu-json = { path = "../nu-json", version = "0.101.1-nightly.15" }
nu-utils = { path = "../nu-utils", version = "0.101.1-nightly.15" }
nu-ansi-term = { workspace = true }
nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.101.1" }
nu-pretty-hex = { path = "../nu-pretty-hex", version = "0.101.1-nightly.15" }

anyhow = { workspace = true }
log = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/nu-glob/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nu-glob"
version = "0.101.1"
version = "0.101.1-nightly.15"
authors = ["The Nushell Project Developers", "The Rust Project Developers"]
license = "MIT/Apache-2.0"
description = """
Expand Down
6 changes: 3 additions & 3 deletions crates/nu-json/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-json"
edition = "2021"
license = "MIT"
name = "nu-json"
version = "0.101.1"
version = "0.101.1-nightly.15"

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

Expand All @@ -26,8 +26,8 @@ serde = { workspace = true }
serde_json = { workspace = true }

[dev-dependencies]
nu-test-support = { path = "../nu-test-support", version = "0.101.1" }
nu-path = { path = "../nu-path", version = "0.101.1" }
nu-test-support = { path = "../nu-test-support", version = "0.101.1-nightly.15" }
nu-path = { path = "../nu-path", version = "0.101.1-nightly.15" }
serde_json = "1.0"
fancy-regex = "0.14.0"

Expand Down
Loading

0 comments on commit 900f847

Please sign in to comment.