Skip to content

Commit

Permalink
Bump version for 0.79.0 release (#8980)
Browse files Browse the repository at this point in the history
  • Loading branch information
sholderbach committed Apr 25, 2023
1 parent 5a4b6f0 commit a1b7261
Show file tree
Hide file tree
Showing 29 changed files with 149 additions and 149 deletions.
50 changes: 25 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "MIT"
name = "nu"
repository = "https://github.com/nushell/nushell"
rust-version = "1.60"
version = "0.78.1"
version = "0.79.0"

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

Expand Down Expand Up @@ -47,22 +47,22 @@ crossterm = "0.26"
ctrlc = "3.2.1"
log = "0.4"
miette = { version = "5.7.0", features = ["fancy-no-backtrace"] }
nu-cli = { path = "./crates/nu-cli", version = "0.78.1" }
nu-color-config = { path = "./crates/nu-color-config", version = "0.78.1" }
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.78.1" }
nu-command = { path = "./crates/nu-command", version = "0.78.1" }
nu-engine = { path = "./crates/nu-engine", version = "0.78.1" }
nu-json = { path = "./crates/nu-json", version = "0.78.1" }
nu-parser = { path = "./crates/nu-parser", version = "0.78.1" }
nu-path = { path = "./crates/nu-path", version = "0.78.1" }
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.78.1" }
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.78.1" }
nu-protocol = { path = "./crates/nu-protocol", version = "0.78.1" }
nu-system = { path = "./crates/nu-system", version = "0.78.1" }
nu-table = { path = "./crates/nu-table", version = "0.78.1" }
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.78.1" }
nu-std = { path = "./crates/nu-std", version = "0.78.1" }
nu-utils = { path = "./crates/nu-utils", version = "0.78.1" }
nu-cli = { path = "./crates/nu-cli", version = "0.79.0" }
nu-color-config = { path = "./crates/nu-color-config", version = "0.79.0" }
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.79.0" }
nu-command = { path = "./crates/nu-command", version = "0.79.0" }
nu-engine = { path = "./crates/nu-engine", version = "0.79.0" }
nu-json = { path = "./crates/nu-json", version = "0.79.0" }
nu-parser = { path = "./crates/nu-parser", version = "0.79.0" }
nu-path = { path = "./crates/nu-path", version = "0.79.0" }
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.79.0" }
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.79.0" }
nu-protocol = { path = "./crates/nu-protocol", version = "0.79.0" }
nu-system = { path = "./crates/nu-system", version = "0.79.0" }
nu-table = { path = "./crates/nu-table", version = "0.79.0" }
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.79.0" }
nu-std = { path = "./crates/nu-std", version = "0.79.0" }
nu-utils = { path = "./crates/nu-utils", version = "0.79.0" }

nu-ansi-term = "0.47.0"
reedline = { version = "0.19.0", features = ["bashisms", "sqlite"]}
Expand Down Expand Up @@ -92,7 +92,7 @@ nix = { version = "0.26", default-features = false, features = [
atty = "0.2"

[dev-dependencies]
nu-test-support = { path = "./crates/nu-test-support", version = "0.78.1" }
nu-test-support = { path = "./crates/nu-test-support", version = "0.79.0" }
tempfile = "3.5.0"
assert_cmd = "2.0.2"
criterion = "0.4"
Expand Down
18 changes: 9 additions & 9 deletions crates/nu-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cli"
edition = "2021"
license = "MIT"
name = "nu-cli"
version = "0.78.1"
version = "0.79.0"

[lib]
bench = false

[dev-dependencies]
nu-test-support = { path = "../nu-test-support", version = "0.78.1" }
nu-test-support = { path = "../nu-test-support", version = "0.79.0" }
rstest = { version = "0.17.0", default-features = false }

[dependencies]
nu-command = { path = "../nu-command", version = "0.78.1" }
nu-engine = { path = "../nu-engine", version = "0.78.1" }
nu-path = { path = "../nu-path", version = "0.78.1" }
nu-parser = { path = "../nu-parser", version = "0.78.1" }
nu-protocol = { path = "../nu-protocol", version = "0.78.1" }
nu-utils = { path = "../nu-utils", version = "0.78.1" }
nu-color-config = { path = "../nu-color-config", version = "0.78.1" }
nu-command = { path = "../nu-command", version = "0.79.0" }
nu-engine = { path = "../nu-engine", version = "0.79.0" }
nu-path = { path = "../nu-path", version = "0.79.0" }
nu-parser = { path = "../nu-parser", version = "0.79.0" }
nu-protocol = { path = "../nu-protocol", version = "0.79.0" }
nu-utils = { path = "../nu-utils", version = "0.79.0" }
nu-color-config = { path = "../nu-color-config", version = "0.79.0" }

nu-ansi-term = "0.47.0"
reedline = { version = "0.19.0", features = ["bashisms", "sqlite"]}
Expand Down
14 changes: 7 additions & 7 deletions crates/nu-cmd-lang/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-lang"
edition = "2021"
license = "MIT"
name = "nu-cmd-lang"
version = "0.78.1"
version = "0.79.0"

[lib]
bench = false

[dependencies]
nu-color-config = { path = "../nu-color-config", version = "0.78.1" }
nu-engine = { path = "../nu-engine", version = "0.78.1" }
nu-parser = { path = "../nu-parser", version = "0.78.1" }
nu-protocol = { path = "../nu-protocol", version = "0.78.1" }
nu-utils = { path = "../nu-utils", version = "0.78.1" }
nu-color-config = { path = "../nu-color-config", version = "0.79.0" }
nu-engine = { path = "../nu-engine", version = "0.79.0" }
nu-parser = { path = "../nu-parser", version = "0.79.0" }
nu-protocol = { path = "../nu-protocol", version = "0.79.0" }
nu-utils = { path = "../nu-utils", version = "0.79.0" }

nu-ansi-term = "0.47.0"

Expand All @@ -29,4 +29,4 @@ shadow-rs = { version = "0.21.0", default-features = false }
shadow-rs = { version = "0.21.0", default-features = false }

[dev-dependencies]
nu-test-support = { path="../nu-test-support", version = "0.78.1" }
nu-test-support = { path="../nu-test-support", version = "0.79.0" }
12 changes: 6 additions & 6 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.78.1"
version = "0.79.0"

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

nu-protocol = { path = "../nu-protocol", version = "0.78.1" }
nu-protocol = { path = "../nu-protocol", version = "0.79.0" }
nu-ansi-term = "0.47.0"
nu-utils = { path = "../nu-utils", version = "0.78.1" }
nu-engine = { path = "../nu-engine", version = "0.78.1" }
nu-json = { path="../nu-json", version = "0.78.1" }
nu-utils = { path = "../nu-utils", version = "0.79.0" }
nu-engine = { path = "../nu-engine", version = "0.79.0" }
nu-json = { path="../nu-json", version = "0.79.0" }

[dev-dependencies]
nu-test-support = { path="../nu-test-support", version = "0.78.1" }
nu-test-support = { path="../nu-test-support", version = "0.79.0" }
Loading

0 comments on commit a1b7261

Please sign in to comment.