Skip to content

Commit

Permalink
bump to 0.83 (#9802)
Browse files Browse the repository at this point in the history
# Description

Bump 0.83

# User-Facing Changes
<!-- List of all changes that impact the user experience here. This
helps us keep track of breaking changes. -->

# Tests + Formatting
<!--
Don't forget to add tests that cover your changes.

Make sure you've run and fixed any issues with these commands:

- `cargo fmt --all -- --check` to check standard code formatting (`cargo
fmt --all` applies these changes)
- `cargo clippy --workspace -- -D warnings -D clippy::unwrap_used -A
clippy::needless_collect -A clippy::result_large_err` to check that
you're using the standard code style
- `cargo test --workspace` to check that all tests pass
- `cargo run -- -c "use std testing; testing run-tests --path
crates/nu-std"` to run the tests for the standard library

> **Note**
> from `nushell` you can also use the `toolkit` as follows
> ```bash
> use toolkit.nu # or use an `env_change` hook to activate it
automatically
> toolkit check pr
> ```
-->

# After Submitting
<!-- If your PR had any user-facing changes, update [the
documentation](https://github.com/nushell/nushell.github.io) after the
PR is merged, if necessary. This will help us keep the docs up to date.
-->
  • Loading branch information
sophiajt committed Jul 25, 2023
1 parent 2080719 commit a33b5fe
Show file tree
Hide file tree
Showing 30 changed files with 174 additions and 174 deletions.
56 changes: 28 additions & 28 deletions Cargo.lock

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

44 changes: 22 additions & 22 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.60"
version = "0.82.1"
version = "0.83.0"

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

Expand Down Expand Up @@ -46,26 +46,26 @@ members = [
]

[dependencies]
nu-cli = { path = "./crates/nu-cli", version = "0.82.1" }
nu-color-config = { path = "./crates/nu-color-config", version = "0.82.1" }
nu-cmd-base = { path = "./crates/nu-cmd-base", version = "0.82.1" }
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.82.1" }
nu-cmd-dataframe = { path = "./crates/nu-cmd-dataframe", version = "0.82.1", optional = true }
nu-cmd-extra = { path = "./crates/nu-cmd-extra", version = "0.82.1", optional = true }
nu-command = { path = "./crates/nu-command", version = "0.82.1" }
nu-engine = { path = "./crates/nu-engine", version = "0.82.1" }
nu-explore = { path = "./crates/nu-explore", version = "0.82.1" }
nu-json = { path = "./crates/nu-json", version = "0.82.1" }
nu-parser = { path = "./crates/nu-parser", version = "0.82.1" }
nu-path = { path = "./crates/nu-path", version = "0.82.1" }
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.82.1" }
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.82.1" }
nu-protocol = { path = "./crates/nu-protocol", version = "0.82.1" }
nu-system = { path = "./crates/nu-system", version = "0.82.1" }
nu-table = { path = "./crates/nu-table", version = "0.82.1" }
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.82.1" }
nu-std = { path = "./crates/nu-std", version = "0.82.1" }
nu-utils = { path = "./crates/nu-utils", version = "0.82.1" }
nu-cli = { path = "./crates/nu-cli", version = "0.83.0" }
nu-color-config = { path = "./crates/nu-color-config", version = "0.83.0" }
nu-cmd-base = { path = "./crates/nu-cmd-base", version = "0.83.0" }
nu-cmd-lang = { path = "./crates/nu-cmd-lang", version = "0.83.0" }
nu-cmd-dataframe = { path = "./crates/nu-cmd-dataframe", version = "0.83.0", optional = true }
nu-cmd-extra = { path = "./crates/nu-cmd-extra", version = "0.83.0", optional = true }
nu-command = { path = "./crates/nu-command", version = "0.83.0" }
nu-engine = { path = "./crates/nu-engine", version = "0.83.0" }
nu-explore = { path = "./crates/nu-explore", version = "0.83.0" }
nu-json = { path = "./crates/nu-json", version = "0.83.0" }
nu-parser = { path = "./crates/nu-parser", version = "0.83.0" }
nu-path = { path = "./crates/nu-path", version = "0.83.0" }
nu-plugin = { path = "./crates/nu-plugin", optional = true, version = "0.83.0" }
nu-pretty-hex = { path = "./crates/nu-pretty-hex", version = "0.83.0" }
nu-protocol = { path = "./crates/nu-protocol", version = "0.83.0" }
nu-system = { path = "./crates/nu-system", version = "0.83.0" }
nu-table = { path = "./crates/nu-table", version = "0.83.0" }
nu-term-grid = { path = "./crates/nu-term-grid", version = "0.83.0" }
nu-std = { path = "./crates/nu-std", version = "0.83.0" }
nu-utils = { path = "./crates/nu-utils", version = "0.83.0" }
nu-ansi-term = "0.49.0"
reedline = { version = "0.22.0", features = ["bashisms", "sqlite"]}

Expand Down Expand Up @@ -97,7 +97,7 @@ nix = { version = "0.26", default-features = false, features = [
is-terminal = "0.4.8"

[dev-dependencies]
nu-test-support = { path = "./crates/nu-test-support", version = "0.82.1" }
nu-test-support = { path = "./crates/nu-test-support", version = "0.83.0" }
tempfile = "3.7"
assert_cmd = "2.0"
criterion = "0.5"
Expand Down
22 changes: 11 additions & 11 deletions crates/nu-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,25 @@ repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cli"
edition = "2021"
license = "MIT"
name = "nu-cli"
version = "0.82.1"
version = "0.83.0"

[lib]
bench = false

[dev-dependencies]
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.82.1" }
nu-test-support = { path = "../nu-test-support", version = "0.82.1" }
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.83.0" }
nu-test-support = { path = "../nu-test-support", version = "0.83.0" }
rstest = { version = "0.17.0", default-features = false }

[dependencies]
nu-cmd-base = { path = "../nu-cmd-base", version = "0.82.1" }
nu-command = { path = "../nu-command", version = "0.82.1" }
nu-engine = { path = "../nu-engine", version = "0.82.1" }
nu-path = { path = "../nu-path", version = "0.82.1" }
nu-parser = { path = "../nu-parser", version = "0.82.1" }
nu-protocol = { path = "../nu-protocol", version = "0.82.1" }
nu-utils = { path = "../nu-utils", version = "0.82.1" }
nu-color-config = { path = "../nu-color-config", version = "0.82.1" }
nu-cmd-base = { path = "../nu-cmd-base", version = "0.83.0" }
nu-command = { path = "../nu-command", version = "0.83.0" }
nu-engine = { path = "../nu-engine", version = "0.83.0" }
nu-path = { path = "../nu-path", version = "0.83.0" }
nu-parser = { path = "../nu-parser", version = "0.83.0" }
nu-protocol = { path = "../nu-protocol", version = "0.83.0" }
nu-utils = { path = "../nu-utils", version = "0.83.0" }
nu-color-config = { path = "../nu-color-config", version = "0.83.0" }
nu-ansi-term = "0.49.0"
reedline = { version = "0.22.0", features = ["bashisms", "sqlite"]}

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

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

[dependencies]
nu-engine = { path = "../nu-engine", version = "0.82.1" }
nu-path = { path = "../nu-path", version = "0.82.1" }
nu-protocol = { version = "0.82.1", path = "../nu-protocol" }
nu-engine = { path = "../nu-engine", version = "0.83.0" }
nu-path = { path = "../nu-path", version = "0.83.0" }
nu-protocol = { version = "0.83.0", path = "../nu-protocol" }
indexmap = { version = "2.0" }
12 changes: 6 additions & 6 deletions crates/nu-cmd-dataframe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ edition = "2021"
license = "MIT"
name = "nu-cmd-dataframe"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-dataframe"
version = "0.82.1"
version = "0.83.0"

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

[lib]
bench = false

[dependencies]
nu-engine = { path = "../nu-engine", version = "0.82.1" }
nu-parser = { path = "../nu-parser", version = "0.82.1" }
nu-protocol = { path = "../nu-protocol", version = "0.82.1" }
nu-engine = { path = "../nu-engine", version = "0.83.0" }
nu-parser = { path = "../nu-parser", version = "0.83.0" }
nu-protocol = { path = "../nu-protocol", version = "0.83.0" }

# Potential dependencies for extras
chrono = { version = "0.4", features = ["std", "unstable-locales"], default-features = false }
Expand Down Expand Up @@ -60,5 +60,5 @@ dataframe = ["default"]
default = ["num", "polars", "sqlparser"]

[dev-dependencies]
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.82.1" }
nu-test-support = { path = "../nu-test-support", version = "0.82.1" }
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.83.0" }
nu-test-support = { path = "../nu-test-support", version = "0.83.0" }
Loading

0 comments on commit a33b5fe

Please sign in to comment.