Skip to content

Commit

Permalink
Update version to 0.101.1-nightly.20
Browse files Browse the repository at this point in the history
  • Loading branch information
hustcer committed Jan 26, 2025
1 parent a011791 commit 8088dae
Show file tree
Hide file tree
Showing 40 changed files with 207 additions and 443 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/audit.yml

This file was deleted.

211 changes: 0 additions & 211 deletions .github/workflows/ci.yml

This file was deleted.

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.20"

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

Expand Down Expand Up @@ -195,22 +195,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.20" }
nu-cmd-base = { path = "./crates/nu-cmd-base", version = "0.101.1-nightly.20" }
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.101.1-nightly.20" }
nu-cmd-plugin = { path = "./crates/nu-cmd-plugin", version = "0.101.1-nightly.20", optional = true }
nu-cmd-extra = { path = "./crates/nu-cmd-extra", version = "0.101.1-nightly.20" }
nu-command = { path = "./crates/nu-command", version = "0.101.1-nightly.20" }
nu-engine = { path = "./crates/nu-engine", version = "0.101.1-nightly.20" }
nu-explore = { path = "./crates/nu-explore", version = "0.101.1-nightly.20" }
nu-lsp = { path = "./crates/nu-lsp/", version = "0.101.1-nightly.20" }
nu-parser = { path = "./crates/nu-parser", version = "0.101.1-nightly.20" }
nu-path = { path = "./crates/nu-path", version = "0.101.1-nightly.20" }
nu-plugin-engine = { path = "./crates/nu-plugin-engine", optional = true, version = "0.101.1-nightly.20" }
nu-protocol = { path = "./crates/nu-protocol", version = "0.101.1-nightly.20" }
nu-std = { path = "./crates/nu-std", version = "0.101.1-nightly.20" }
nu-system = { path = "./crates/nu-system", version = "0.101.1-nightly.20" }
nu-utils = { path = "./crates/nu-utils", version = "0.101.1-nightly.20" }
reedline = { workspace = true, features = ["bashisms", "sqlite"] }

crossterm = { workspace = true }
Expand Down Expand Up @@ -240,9 +240,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.20" }
nu-plugin-protocol = { path = "./crates/nu-plugin-protocol", version = "0.101.1-nightly.20" }
nu-plugin-core = { path = "./crates/nu-plugin-core", version = "0.101.1-nightly.20" }
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.20"

[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.20" }
nu-command = { path = "../nu-command", version = "0.101.1-nightly.20" }
nu-test-support = { path = "../nu-test-support", version = "0.101.1-nightly.20" }
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.20" }
nu-engine = { path = "../nu-engine", version = "0.101.1-nightly.20", features = ["os"] }
nu-glob = { path = "../nu-glob", version = "0.101.1-nightly.20" }
nu-path = { path = "../nu-path", version = "0.101.1-nightly.20" }
nu-parser = { path = "../nu-parser", version = "0.101.1-nightly.20" }
nu-plugin-engine = { path = "../nu-plugin-engine", version = "0.101.1-nightly.20", optional = true }
nu-protocol = { path = "../nu-protocol", version = "0.101.1-nightly.20", features = ["os"] }
nu-utils = { path = "../nu-utils", version = "0.101.1-nightly.20" }
nu-color-config = { path = "../nu-color-config", version = "0.101.1-nightly.20" }
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.20"

# 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.20", default-features = false }
nu-parser = { path = "../nu-parser", version = "0.101.1-nightly.20" }
nu-path = { path = "../nu-path", version = "0.101.1-nightly.20" }
nu-protocol = { path = "../nu-protocol", version = "0.101.1-nightly.20", default-features = false }

indexmap = { workspace = true }
miette = { workspace = true }
Expand Down
Loading

0 comments on commit 8088dae

Please sign in to comment.