Skip to content

Commit

Permalink
Bump version for 0.88.0 release (#11298)
Browse files Browse the repository at this point in the history
- [x] reedline
  - [x] released
  - [x] pinned
- [x] git dependency check
- [x] release notes
  • Loading branch information
sholderbach committed Dec 12, 2023
1 parent 0fba088 commit d43f425
Show file tree
Hide file tree
Showing 33 changed files with 191 additions and 191 deletions.
58 changes: 29 additions & 29 deletions Cargo.lock

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

46 changes: 23 additions & 23 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.87.2"
version = "0.88.0"

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

Expand Down Expand Up @@ -47,27 +47,27 @@ members = [
]

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

Expand Down Expand Up @@ -97,7 +97,7 @@ nix = { version = "0.27", default-features = false, features = [
] }

[dev-dependencies]
nu-test-support = { path = "./crates/nu-test-support", version = "0.87.2" }
nu-test-support = { path = "./crates/nu-test-support", version = "0.88.0" }
assert_cmd = "2.0"
criterion = "0.5"
pretty_assertions = "1.4"
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.87.2"
version = "0.88.0"

[lib]
bench = false

[dev-dependencies]
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.87.2" }
nu-command = { path = "../nu-command", version = "0.87.2" }
nu-test-support = { path = "../nu-test-support", version = "0.87.2" }
nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.88.0" }
nu-command = { path = "../nu-command", version = "0.88.0" }
nu-test-support = { path = "../nu-test-support", version = "0.88.0" }
rstest = { version = "0.18.1", default-features = false }

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

Expand Down
16 changes: 8 additions & 8 deletions crates/nu-cmd-base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ edition = "2021"
license = "MIT"
name = "nu-cmd-base"
repository = "https://github.com/nushell/nushell/tree/main/crates/nu-cmd-base"
version = "0.87.2"
version = "0.88.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.87.2" }
nu-glob = { path = "../nu-glob", version = "0.87.2" }
nu-parser = { path = "../nu-parser", version = "0.87.2" }
nu-path = { path = "../nu-path", version = "0.87.2" }
nu-protocol = { path = "../nu-protocol", version = "0.87.2" }
nu-utils = { path = "../nu-utils", version = "0.87.2" }
nu-engine = { path = "../nu-engine", version = "0.88.0" }
nu-glob = { path = "../nu-glob", version = "0.88.0" }
nu-parser = { path = "../nu-parser", version = "0.88.0" }
nu-path = { path = "../nu-path", version = "0.88.0" }
nu-protocol = { path = "../nu-protocol", version = "0.88.0" }
nu-utils = { path = "../nu-utils", version = "0.88.0" }

indexmap = "2.1"
miette = "5.10.0"

[dev-dependencies]
nu-test-support = { path = "../nu-test-support", version = "0.87.2" }
nu-test-support = { path = "../nu-test-support", version = "0.88.0" }
rstest = "0.18.2"

0 comments on commit d43f425

Please sign in to comment.