mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 19:37:45 +02:00
bump to dev build v0.72.2 (#7360)
# Description After the 0.72.1 hotfix, let's bump our dev builds to 0.72.2. # User-Facing 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` to check that you're using the standard code style - `cargo test --workspace` to check that all tests pass # 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.
This commit is contained in:
@ -4,18 +4,18 @@ description = "A plugin to display charts"
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
name = "nu_plugin_chart"
|
||||
version = "0.72.1"
|
||||
version = "0.72.2"
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
nu-data = { path="../nu-data", version = "0.72.1" }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.1" }
|
||||
nu-source = { path="../nu-source", version = "0.72.1" }
|
||||
nu-value-ext = { path="../nu-value-ext", version = "0.72.1" }
|
||||
nu-data = { path="../nu-data", version = "0.72.2" }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.2" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.2" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.2" }
|
||||
nu-source = { path="../nu-source", version = "0.72.2" }
|
||||
nu-value-ext = { path="../nu-value-ext", version = "0.72.2" }
|
||||
|
||||
crossterm = "0.19.0"
|
||||
tui = { version="0.15.0", default-features=false, features=["crossterm"] }
|
||||
|
@ -4,7 +4,7 @@ description = "A converter plugin to the bson format for Nushell"
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
name = "nu_plugin_from_bson"
|
||||
version = "0.72.1"
|
||||
version = "0.72.2"
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
@ -12,9 +12,9 @@ doctest = false
|
||||
[dependencies]
|
||||
bigdecimal = { package = "bigdecimal", version = "0.3.0", features = ["serde"] }
|
||||
bson = { version = "2.0.1", features = [ "chrono-0_4" ] }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.1" }
|
||||
nu-source = { path="../nu-source", version = "0.72.1" }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.2" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.2" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.2" }
|
||||
nu-source = { path="../nu-source", version = "0.72.2" }
|
||||
|
||||
[build-dependencies]
|
||||
|
@ -4,16 +4,16 @@ description = "A converter plugin to the mp4 format for Nushell"
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
name = "nu_plugin_from_mp4"
|
||||
version = "0.72.1"
|
||||
version = "0.72.2"
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
nu-errors = { path="../nu-errors", version = "0.72.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.1" }
|
||||
nu-source = { path="../nu-source", version = "0.72.1" }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.2" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.2" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.2" }
|
||||
nu-source = { path="../nu-source", version = "0.72.2" }
|
||||
tempfile = "3.2.0"
|
||||
mp4 = "0.9.0"
|
||||
|
||||
|
@ -4,17 +4,17 @@ description = "A converter plugin to the bson format for Nushell"
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
name = "nu_plugin_from_sqlite"
|
||||
version = "0.72.1"
|
||||
version = "0.72.2"
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
bigdecimal = { package = "bigdecimal", version = "0.3.0", features = ["serde"] }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.1" }
|
||||
nu-source = { path="../nu-source", version = "0.72.1" }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.2" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.2" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.2" }
|
||||
nu-source = { path="../nu-source", version = "0.72.2" }
|
||||
tempfile = "3.2.0"
|
||||
|
||||
[dependencies.rusqlite]
|
||||
|
@ -4,17 +4,17 @@ description = "An S3 plugin for Nushell"
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
name = "nu_plugin_s3"
|
||||
version = "0.72.1"
|
||||
version = "0.72.2"
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
futures = { version="0.3.12", features=["compat", "io-compat"] }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.1" }
|
||||
nu-source = { path="../nu-source", version = "0.72.1" }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.2" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.2" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.2" }
|
||||
nu-source = { path="../nu-source", version = "0.72.2" }
|
||||
s3handler = "0.7.5"
|
||||
|
||||
[build-dependencies]
|
||||
|
@ -4,17 +4,17 @@ description = "A plugin to open files/URLs directly from Nushell"
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
name = "nu_plugin_start"
|
||||
version = "0.72.1"
|
||||
version = "0.72.2"
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
glob = "0.3.0"
|
||||
nu-errors = { path="../nu-errors", version = "0.72.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.1" }
|
||||
nu-source = { path="../nu-source", version = "0.72.1" }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.2" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.2" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.2" }
|
||||
nu-source = { path="../nu-source", version = "0.72.2" }
|
||||
url = "2.2.0"
|
||||
webbrowser = "0.5.5"
|
||||
|
||||
@ -22,5 +22,5 @@ webbrowser = "0.5.5"
|
||||
open = "1.4.0"
|
||||
|
||||
[build-dependencies]
|
||||
nu-errors = { version = "0.72.1", path="../nu-errors" }
|
||||
nu-source = { version = "0.72.1", path="../nu-source" }
|
||||
nu-errors = { version = "0.72.2", path="../nu-errors" }
|
||||
nu-source = { version = "0.72.2", path="../nu-source" }
|
||||
|
@ -4,17 +4,17 @@ description = "A converter plugin to the bson format for Nushell"
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
name = "nu_plugin_to_bson"
|
||||
version = "0.72.1"
|
||||
version = "0.72.2"
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
bson = { version = "2.0.1", features = [ "chrono-0_4" ] }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.1" }
|
||||
nu-source = { path="../nu-source", version = "0.72.1" }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.2" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.2" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.2" }
|
||||
nu-source = { path="../nu-source", version = "0.72.2" }
|
||||
num-traits = "0.2.14"
|
||||
|
||||
[features]
|
||||
|
@ -4,17 +4,17 @@ description = "A converter plugin to the SQLite format for Nushell"
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
name = "nu_plugin_to_sqlite"
|
||||
version = "0.72.1"
|
||||
version = "0.72.2"
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
hex = "0.4.2"
|
||||
nu-errors = { path="../nu-errors", version = "0.72.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.1" }
|
||||
nu-source = { path="../nu-source", version = "0.72.1" }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.2" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.2" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.2" }
|
||||
nu-source = { path="../nu-source", version = "0.72.2" }
|
||||
tempfile = "3.2.0"
|
||||
|
||||
[dependencies.rusqlite]
|
||||
|
@ -4,16 +4,16 @@ description = "Tree viewer plugin for Nushell"
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
name = "nu_plugin_tree"
|
||||
version = "0.72.1"
|
||||
version = "0.72.2"
|
||||
|
||||
[lib]
|
||||
doctest = false
|
||||
|
||||
[dependencies]
|
||||
derive-new = "0.5.8"
|
||||
nu-errors = { path="../nu-errors", version = "0.72.1" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.1" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.1" }
|
||||
nu-errors = { path="../nu-errors", version = "0.72.2" }
|
||||
nu-plugin = { path="../nu-plugin", version = "0.72.2" }
|
||||
nu-protocol = { path="../nu-protocol", version = "0.72.2" }
|
||||
ptree = { version = "0.4.0", default-features = false }
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user