From 0522023d4cda2aa713479fd9a45d78d06a3bf60f Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Wed, 1 Jul 2020 06:25:09 +1200 Subject: [PATCH] Bump to 0.16.0 (#2084) --- Cargo.lock | 42 +++++++++++++------------- Cargo.toml | 40 ++++++++++++------------ crates/nu-build/Cargo.toml | 2 +- crates/nu-cli/Cargo.toml | 20 ++++++------ crates/nu-errors/Cargo.toml | 6 ++-- crates/nu-parser/Cargo.toml | 8 ++--- crates/nu-plugin/Cargo.toml | 12 ++++---- crates/nu-protocol/Cargo.toml | 8 ++--- crates/nu-source/Cargo.toml | 4 +-- crates/nu-table/Cargo.toml | 2 +- crates/nu-test-support/Cargo.toml | 10 +++--- crates/nu-value-ext/Cargo.toml | 12 ++++---- crates/nu_plugin_binaryview/Cargo.toml | 12 ++++---- crates/nu_plugin_fetch/Cargo.toml | 12 ++++---- crates/nu_plugin_inc/Cargo.toml | 14 ++++----- crates/nu_plugin_match/Cargo.toml | 12 ++++---- crates/nu_plugin_post/Cargo.toml | 12 ++++---- crates/nu_plugin_ps/Cargo.toml | 12 ++++---- crates/nu_plugin_start/Cargo.toml | 16 +++++----- crates/nu_plugin_sys/Cargo.toml | 12 ++++---- crates/nu_plugin_textview/Cargo.toml | 14 ++++----- crates/nu_plugin_tree/Cargo.toml | 12 ++++---- docs/commands/to-toml.md | 2 +- 23 files changed, 148 insertions(+), 148 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a15c8b84f4..cbf6c20951 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2396,7 +2396,7 @@ dependencies = [ [[package]] name = "nu" -version = "0.15.1" +version = "0.16.0" dependencies = [ "clap", "crossterm", @@ -2434,7 +2434,7 @@ dependencies = [ [[package]] name = "nu-build" -version = "0.15.1" +version = "0.16.0" dependencies = [ "lazy_static 1.4.0", "serde 1.0.114", @@ -2444,7 +2444,7 @@ dependencies = [ [[package]] name = "nu-cli" -version = "0.15.1" +version = "0.16.0" dependencies = [ "ansi_term 0.12.1", "app_dirs", @@ -2536,7 +2536,7 @@ dependencies = [ [[package]] name = "nu-errors" -version = "0.15.1" +version = "0.16.0" dependencies = [ "ansi_term 0.12.1", "bigdecimal", @@ -2556,7 +2556,7 @@ dependencies = [ [[package]] name = "nu-parser" -version = "0.15.1" +version = "0.16.0" dependencies = [ "bigdecimal", "codespan-reporting", @@ -2575,7 +2575,7 @@ dependencies = [ [[package]] name = "nu-plugin" -version = "0.15.1" +version = "0.16.0" dependencies = [ "bigdecimal", "indexmap", @@ -2591,7 +2591,7 @@ dependencies = [ [[package]] name = "nu-protocol" -version = "0.15.1" +version = "0.16.0" dependencies = [ "ansi_term 0.12.1", "bigdecimal", @@ -2620,7 +2620,7 @@ dependencies = [ [[package]] name = "nu-source" -version = "0.15.1" +version = "0.16.0" dependencies = [ "codespan-reporting", "derive-new", @@ -2633,7 +2633,7 @@ dependencies = [ [[package]] name = "nu-table" -version = "0.15.1" +version = "0.16.0" dependencies = [ "ansi_term 0.12.1", "unicode-width", @@ -2641,7 +2641,7 @@ dependencies = [ [[package]] name = "nu-test-support" -version = "0.15.1" +version = "0.16.0" dependencies = [ "directories 2.0.2", "dunce", @@ -2657,7 +2657,7 @@ dependencies = [ [[package]] name = "nu-value-ext" -version = "0.15.1" +version = "0.16.0" dependencies = [ "indexmap", "itertools", @@ -2671,7 +2671,7 @@ dependencies = [ [[package]] name = "nu_plugin_binaryview" -version = "0.15.1" +version = "0.16.0" dependencies = [ "ansi_term 0.12.1", "crossterm", @@ -2688,7 +2688,7 @@ dependencies = [ [[package]] name = "nu_plugin_fetch" -version = "0.15.1" +version = "0.16.0" dependencies = [ "base64 0.12.3", "futures 0.3.5", @@ -2703,7 +2703,7 @@ dependencies = [ [[package]] name = "nu_plugin_inc" -version = "0.15.1" +version = "0.16.0" dependencies = [ "nu-build", "nu-errors", @@ -2716,7 +2716,7 @@ dependencies = [ [[package]] name = "nu_plugin_match" -version = "0.15.1" +version = "0.16.0" dependencies = [ "futures 0.3.5", "nu-build", @@ -2729,7 +2729,7 @@ dependencies = [ [[package]] name = "nu_plugin_post" -version = "0.15.1" +version = "0.16.0" dependencies = [ "base64 0.12.3", "futures 0.3.5", @@ -2746,7 +2746,7 @@ dependencies = [ [[package]] name = "nu_plugin_ps" -version = "0.15.1" +version = "0.16.0" dependencies = [ "futures 0.3.5", "futures-timer", @@ -2760,7 +2760,7 @@ dependencies = [ [[package]] name = "nu_plugin_start" -version = "0.15.1" +version = "0.16.0" dependencies = [ "glob", "nu-build", @@ -2774,7 +2774,7 @@ dependencies = [ [[package]] name = "nu_plugin_sys" -version = "0.15.1" +version = "0.16.0" dependencies = [ "battery", "futures 0.3.5", @@ -2789,7 +2789,7 @@ dependencies = [ [[package]] name = "nu_plugin_textview" -version = "0.15.1" +version = "0.16.0" dependencies = [ "ansi_term 0.12.1", "bat", @@ -2807,7 +2807,7 @@ dependencies = [ [[package]] name = "nu_plugin_tree" -version = "0.15.1" +version = "0.16.0" dependencies = [ "derive-new", "nu-build", diff --git a/Cargo.toml b/Cargo.toml index 210f12e8e9..13acca04f3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] description = "A new type of shell" license = "MIT" @@ -18,23 +18,23 @@ members = ["crates/*/"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nu-cli = { version = "0.15.1", path = "./crates/nu-cli" } -nu-source = { version = "0.15.1", path = "./crates/nu-source" } -nu-plugin = { version = "0.15.1", path = "./crates/nu-plugin" } -nu-protocol = { version = "0.15.1", path = "./crates/nu-protocol" } -nu-errors = { version = "0.15.1", path = "./crates/nu-errors" } -nu-parser = { version = "0.15.1", path = "./crates/nu-parser" } -nu-value-ext = { version = "0.15.1", path = "./crates/nu-value-ext" } -nu_plugin_binaryview = { version = "0.15.1", path = "./crates/nu_plugin_binaryview", optional=true } -nu_plugin_fetch = { version = "0.15.1", path = "./crates/nu_plugin_fetch", optional=true } -nu_plugin_inc = { version = "0.15.1", path = "./crates/nu_plugin_inc", optional=true } -nu_plugin_match = { version = "0.15.1", path = "./crates/nu_plugin_match", optional=true } -nu_plugin_post = { version = "0.15.1", path = "./crates/nu_plugin_post", optional=true } -nu_plugin_ps = { version = "0.15.1", path = "./crates/nu_plugin_ps", optional=true } -nu_plugin_start = { version = "0.15.1", path = "./crates/nu_plugin_start", optional=true } -nu_plugin_sys = { version = "0.15.1", path = "./crates/nu_plugin_sys", optional=true } -nu_plugin_textview = { version = "0.15.1", path = "./crates/nu_plugin_textview", optional=true } -nu_plugin_tree = { version = "0.15.1", path = "./crates/nu_plugin_tree", optional=true } +nu-cli = { version = "0.16.0", path = "./crates/nu-cli" } +nu-source = { version = "0.16.0", path = "./crates/nu-source" } +nu-plugin = { version = "0.16.0", path = "./crates/nu-plugin" } +nu-protocol = { version = "0.16.0", path = "./crates/nu-protocol" } +nu-errors = { version = "0.16.0", path = "./crates/nu-errors" } +nu-parser = { version = "0.16.0", path = "./crates/nu-parser" } +nu-value-ext = { version = "0.16.0", path = "./crates/nu-value-ext" } +nu_plugin_binaryview = { version = "0.16.0", path = "./crates/nu_plugin_binaryview", optional=true } +nu_plugin_fetch = { version = "0.16.0", path = "./crates/nu_plugin_fetch", optional=true } +nu_plugin_inc = { version = "0.16.0", path = "./crates/nu_plugin_inc", optional=true } +nu_plugin_match = { version = "0.16.0", path = "./crates/nu_plugin_match", optional=true } +nu_plugin_post = { version = "0.16.0", path = "./crates/nu_plugin_post", optional=true } +nu_plugin_ps = { version = "0.16.0", path = "./crates/nu_plugin_ps", optional=true } +nu_plugin_start = { version = "0.16.0", path = "./crates/nu_plugin_start", optional=true } +nu_plugin_sys = { version = "0.16.0", path = "./crates/nu_plugin_sys", optional=true } +nu_plugin_textview = { version = "0.16.0", path = "./crates/nu_plugin_textview", optional=true } +nu_plugin_tree = { version = "0.16.0", path = "./crates/nu_plugin_tree", optional=true } crossterm = { version = "0.17.5", optional = true } semver = { version = "0.10.0", optional = true } @@ -50,12 +50,12 @@ pretty_env_logger = "0.4.0" starship = "0.43.0" [dev-dependencies] -nu-test-support = { version = "0.15.1", path = "./crates/nu-test-support" } +nu-test-support = { version = "0.16.0", path = "./crates/nu-test-support" } [build-dependencies] toml = "0.5.6" serde = { version = "1.0.110", features = ["derive"] } -nu-build = { version = "0.15.1", path = "./crates/nu-build" } +nu-build = { version = "0.16.0", path = "./crates/nu-build" } [features] default = ["sys", "ps", "textview", "inc"] diff --git a/crates/nu-build/Cargo.toml b/crates/nu-build/Cargo.toml index 2d06317d4a..a9811a0e5a 100644 --- a/crates/nu-build/Cargo.toml +++ b/crates/nu-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-build" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "Core build system for nushell" diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index dad677339c..de1625e660 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-cli" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] description = "CLI for nushell" edition = "2018" @@ -10,14 +10,14 @@ license = "MIT" doctest = false [dependencies] -nu-source = { version = "0.15.1", path = "../nu-source" } -nu-plugin = { version = "0.15.1", path = "../nu-plugin" } -nu-protocol = { version = "0.15.1", path = "../nu-protocol" } -nu-errors = { version = "0.15.1", path = "../nu-errors" } -nu-parser = { version = "0.15.1", path = "../nu-parser" } -nu-value-ext = { version = "0.15.1", path = "../nu-value-ext" } -nu-test-support = { version = "0.15.1", path = "../nu-test-support" } -nu-table = {version = "0.15.1", path = "../nu-table"} +nu-source = { version = "0.16.0", path = "../nu-source" } +nu-plugin = { version = "0.16.0", path = "../nu-plugin" } +nu-protocol = { version = "0.16.0", path = "../nu-protocol" } +nu-errors = { version = "0.16.0", path = "../nu-errors" } +nu-parser = { version = "0.16.0", path = "../nu-parser" } +nu-value-ext = { version = "0.16.0", path = "../nu-value-ext" } +nu-test-support = { version = "0.16.0", path = "../nu-test-support" } +nu-table = {version = "0.16.0", path = "../nu-table"} ansi_term = "0.12.1" app_dirs = "1.2.1" @@ -102,7 +102,7 @@ version = "0.23.1" features = ["bundled", "blob"] [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } [dev-dependencies] quickcheck = "0.9" diff --git a/crates/nu-errors/Cargo.toml b/crates/nu-errors/Cargo.toml index bd97fde30c..6952d2a424 100644 --- a/crates/nu-errors/Cargo.toml +++ b/crates/nu-errors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-errors" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "Core error subsystem for Nushell" @@ -10,7 +10,7 @@ license = "MIT" doctest = false [dependencies] -nu-source = { path = "../nu-source", version = "0.15.1" } +nu-source = { path = "../nu-source", version = "0.16.0" } ansi_term = "0.12.1" bigdecimal = { version = "0.1.2", features = ["serde"] } @@ -28,4 +28,4 @@ serde_json = "1.0.55" glob = "0.3.0" [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu-parser/Cargo.toml b/crates/nu-parser/Cargo.toml index f0daa5ee16..7afcbbf0c1 100644 --- a/crates/nu-parser/Cargo.toml +++ b/crates/nu-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-parser" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "Nushell parser" @@ -20,9 +20,9 @@ codespan-reporting = "0.9.5" log = "0.4.8" shellexpand = "2.0.0" -nu-source = { version = "0.15.1", path = "../nu-source" } -nu-protocol = { version = "0.15.1", path = "../nu-protocol" } -nu-errors = { version = "0.15.1", path = "../nu-errors" } +nu-source = { version = "0.16.0", path = "../nu-source" } +nu-protocol = { version = "0.16.0", path = "../nu-protocol" } +nu-errors = { version = "0.16.0", path = "../nu-errors" } [features] stable = [] diff --git a/crates/nu-plugin/Cargo.toml b/crates/nu-plugin/Cargo.toml index f61659c40e..6370059ce1 100644 --- a/crates/nu-plugin/Cargo.toml +++ b/crates/nu-plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-plugin" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "Nushell Plugin" @@ -10,10 +10,10 @@ license = "MIT" doctest = false [dependencies] -nu-protocol = { path = "../nu-protocol", version = "0.15.1" } -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-errors = { path = "../nu-errors", version = "0.15.1" } -nu-value-ext = { path = "../nu-value-ext", version = "0.15.1" } +nu-protocol = { path = "../nu-protocol", version = "0.16.0" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-errors = { path = "../nu-errors", version = "0.16.0" } +nu-value-ext = { path = "../nu-value-ext", version = "0.16.0" } indexmap = { version = "1.4.0", features = ["serde-1"] } serde = { version = "1.0.114", features = ["derive"] } @@ -22,4 +22,4 @@ serde_json = "1.0.55" bigdecimal = { version = "0.1.2", features = ["serde"] } [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu-protocol/Cargo.toml b/crates/nu-protocol/Cargo.toml index d9677d561d..d947d365a8 100644 --- a/crates/nu-protocol/Cargo.toml +++ b/crates/nu-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-protocol" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "Core values and protocols for Nushell" @@ -10,8 +10,8 @@ license = "MIT" doctest = false [dependencies] -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-errors = { path = "../nu-errors", version = "0.15.1" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-errors = { path = "../nu-errors", version = "0.16.0" } serde = { version = "1.0.114", features = ["derive"] } indexmap = { version = "1.4.0", features = ["serde-1"] } @@ -37,4 +37,4 @@ toml = "0.5.6" serde_json = "1.0.55" [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu-source/Cargo.toml b/crates/nu-source/Cargo.toml index d957fb2952..2a63636275 100644 --- a/crates/nu-source/Cargo.toml +++ b/crates/nu-source/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-source" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "A source string characterizer for Nushell" @@ -18,4 +18,4 @@ termcolor = "1.1.0" pretty = "0.5.2" [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu-table/Cargo.toml b/crates/nu-table/Cargo.toml index f3e25392bd..c2d34d36c6 100644 --- a/crates/nu-table/Cargo.toml +++ b/crates/nu-table/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-table" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "Nushell table printing" diff --git a/crates/nu-test-support/Cargo.toml b/crates/nu-test-support/Cargo.toml index d560dfc52e..36fe7a27f7 100644 --- a/crates/nu-test-support/Cargo.toml +++ b/crates/nu-test-support/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-test-support" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "A source string characterizer for Nushell" @@ -10,9 +10,9 @@ license = "MIT" doctest = false [dependencies] -nu-parser = { path = "../nu-parser", version = "0.15.1" } -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-protocol = { path = "../nu-protocol", version = "0.15.1" } +nu-parser = { path = "../nu-parser", version = "0.16.0" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-protocol = { path = "../nu-protocol", version = "0.16.0" } directories = "2.0.2" dunce = "1.0.1" @@ -22,4 +22,4 @@ tempfile = "3.1.0" indexmap = { version = "1.4.0", features = ["serde-1"] } [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu-value-ext/Cargo.toml b/crates/nu-value-ext/Cargo.toml index d011fecfd7..5ee6d76639 100644 --- a/crates/nu-value-ext/Cargo.toml +++ b/crates/nu-value-ext/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-value-ext" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "Extension traits for values in Nushell" @@ -10,14 +10,14 @@ license = "MIT" doctest = false [dependencies] -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-errors = { path = "../nu-errors", version = "0.15.1" } -nu-parser = { path = "../nu-parser", version = "0.15.1" } -nu-protocol = { path = "../nu-protocol", version = "0.15.1" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-errors = { path = "../nu-errors", version = "0.16.0" } +nu-parser = { path = "../nu-parser", version = "0.16.0" } +nu-protocol = { path = "../nu-protocol", version = "0.16.0" } num-traits = "0.2.12" itertools = "0.9.0" indexmap = { version = "1.4.0", features = ["serde-1"] } [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu_plugin_binaryview/Cargo.toml b/crates/nu_plugin_binaryview/Cargo.toml index 1af2dd1032..f837ec60a5 100644 --- a/crates/nu_plugin_binaryview/Cargo.toml +++ b/crates/nu_plugin_binaryview/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_binaryview" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "A binary viewer plugin for Nushell" @@ -12,14 +12,14 @@ doctest = false [dependencies] ansi_term = "0.12.1" crossterm = { version = "0.17.5" } -nu-plugin = { path = "../nu-plugin", version = "0.15.1" } -nu-protocol = { path = "../nu-protocol", version = "0.15.1" } -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-errors = { path = "../nu-errors", version = "0.15.1" } +nu-plugin = { path = "../nu-plugin", version = "0.16.0" } +nu-protocol = { path = "../nu-protocol", version = "0.16.0" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-errors = { path = "../nu-errors", version = "0.16.0" } pretty-hex = "0.1.1" image = { version = "0.22.4", default_features = false, features = ["png_codec", "jpeg"] } rawkey = "0.1.2" neso = "0.5.0" [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu_plugin_fetch/Cargo.toml b/crates/nu_plugin_fetch/Cargo.toml index 115ce74a4d..2777f5f46c 100644 --- a/crates/nu_plugin_fetch/Cargo.toml +++ b/crates/nu_plugin_fetch/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_fetch" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "A URL fetch plugin for Nushell" @@ -10,14 +10,14 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.15.1" } -nu-protocol = { path = "../nu-protocol", version = "0.15.1" } -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-errors = { path = "../nu-errors", version = "0.15.1" } +nu-plugin = { path = "../nu-plugin", version = "0.16.0" } +nu-protocol = { path = "../nu-protocol", version = "0.16.0" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-errors = { path = "../nu-errors", version = "0.16.0" } futures = { version = "0.3", features = ["compat", "io-compat"] } surf = "1.0.3" url = "2.1.1" base64 = "0.12.3" [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu_plugin_inc/Cargo.toml b/crates/nu_plugin_inc/Cargo.toml index 0d3d94be28..e14929fe3d 100644 --- a/crates/nu_plugin_inc/Cargo.toml +++ b/crates/nu_plugin_inc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_inc" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "A version incrementer plugin for Nushell" @@ -10,13 +10,13 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.15.1" } -nu-protocol = { path = "../nu-protocol", version = "0.15.1" } -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-errors = { path = "../nu-errors", version = "0.15.1" } -nu-value-ext = { path = "../nu-value-ext", version = "0.15.1" } +nu-plugin = { path = "../nu-plugin", version = "0.16.0" } +nu-protocol = { path = "../nu-protocol", version = "0.16.0" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-errors = { path = "../nu-errors", version = "0.16.0" } +nu-value-ext = { path = "../nu-value-ext", version = "0.16.0" } semver = "0.10.0" [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu_plugin_match/Cargo.toml b/crates/nu_plugin_match/Cargo.toml index 35d0d23208..313bcb558a 100644 --- a/crates/nu_plugin_match/Cargo.toml +++ b/crates/nu_plugin_match/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_match" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "A regex match plugin for Nushell" @@ -10,12 +10,12 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.15.1" } -nu-protocol = { path = "../nu-protocol", version = "0.15.1" } -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-errors = { path = "../nu-errors", version = "0.15.1" } +nu-plugin = { path = "../nu-plugin", version = "0.16.0" } +nu-protocol = { path = "../nu-protocol", version = "0.16.0" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-errors = { path = "../nu-errors", version = "0.16.0" } futures = { version = "0.3", features = ["compat", "io-compat"] } regex = "1" [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu_plugin_post/Cargo.toml b/crates/nu_plugin_post/Cargo.toml index 1f8f505315..9445d2c7f7 100644 --- a/crates/nu_plugin_post/Cargo.toml +++ b/crates/nu_plugin_post/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_post" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "An HTTP post plugin for Nushell" @@ -10,10 +10,10 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.15.1" } -nu-protocol = { path = "../nu-protocol", version = "0.15.1" } -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-errors = { path = "../nu-errors", version = "0.15.1" } +nu-plugin = { path = "../nu-plugin", version = "0.16.0" } +nu-protocol = { path = "../nu-protocol", version = "0.16.0" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-errors = { path = "../nu-errors", version = "0.16.0" } futures = { version = "0.3", features = ["compat", "io-compat"] } surf = "1.0.3" url = "2.1.1" @@ -22,4 +22,4 @@ base64 = "0.12.3" num-traits = "0.2.12" [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu_plugin_ps/Cargo.toml b/crates/nu_plugin_ps/Cargo.toml index 1745f3da08..32cec6b2af 100644 --- a/crates/nu_plugin_ps/Cargo.toml +++ b/crates/nu_plugin_ps/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_ps" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "A process list plugin for Nushell" @@ -10,10 +10,10 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.15.1" } -nu-protocol = { path = "../nu-protocol", version = "0.15.1" } -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-errors = { path = "../nu-errors", version = "0.15.1" } +nu-plugin = { path = "../nu-plugin", version = "0.16.0" } +nu-protocol = { path = "../nu-protocol", version = "0.16.0" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-errors = { path = "../nu-errors", version = "0.16.0" } futures = { version = "0.3", features = ["compat", "io-compat"] } futures-timer = "3.0.2" @@ -24,4 +24,4 @@ default-features = false features = ["process"] [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu_plugin_start/Cargo.toml b/crates/nu_plugin_start/Cargo.toml index afea4899c8..abd140ff1e 100644 --- a/crates/nu_plugin_start/Cargo.toml +++ b/crates/nu_plugin_start/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_start" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "A plugin to open files/URLs directly from Nushell" @@ -10,15 +10,15 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.15.1" } -nu-protocol = { path = "../nu-protocol", version = "0.15.1" } -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-errors = { path = "../nu-errors", version = "0.15.1" } +nu-plugin = { path = "../nu-plugin", version = "0.16.0" } +nu-protocol = { path = "../nu-protocol", version = "0.16.0" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-errors = { path = "../nu-errors", version = "0.16.0" } url = "2.1.1" open = "1.4.0" glob = "0.3.0" [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } -nu-errors = { version = "0.15.1", path = "../nu-errors" } -nu-source = { version = "0.15.1", path = "../nu-source" } \ No newline at end of file +nu-build = { version = "0.16.0", path = "../nu-build" } +nu-errors = { version = "0.16.0", path = "../nu-errors" } +nu-source = { version = "0.16.0", path = "../nu-source" } \ No newline at end of file diff --git a/crates/nu_plugin_sys/Cargo.toml b/crates/nu_plugin_sys/Cargo.toml index 4454d33bc1..a42f166ae9 100644 --- a/crates/nu_plugin_sys/Cargo.toml +++ b/crates/nu_plugin_sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_sys" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "A system info plugin for Nushell" @@ -10,10 +10,10 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.15.1" } -nu-protocol = { path = "../nu-protocol", version = "0.15.1" } -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-errors = { path = "../nu-errors", version = "0.15.1" } +nu-plugin = { path = "../nu-plugin", version = "0.16.0" } +nu-protocol = { path = "../nu-protocol", version = "0.16.0" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-errors = { path = "../nu-errors", version = "0.16.0" } futures = { version = "0.3", features = ["compat", "io-compat"] } battery = "0.7.5" @@ -26,4 +26,4 @@ default-features = false features = ["host", "cpu", "memory", "disk", "net", "sensors"] [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu_plugin_textview/Cargo.toml b/crates/nu_plugin_textview/Cargo.toml index ca29c6a34e..904ef19193 100644 --- a/crates/nu_plugin_textview/Cargo.toml +++ b/crates/nu_plugin_textview/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_textview" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "Text viewer plugin for Nushell" @@ -10,11 +10,11 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.15.1" } -nu-protocol = { path = "../nu-protocol", version = "0.15.1" } -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-errors = { path = "../nu-errors", version = "0.15.1" } -nu-cli = { path = "../nu-cli", version = "0.15.1" } +nu-plugin = { path = "../nu-plugin", version = "0.16.0" } +nu-protocol = { path = "../nu-protocol", version = "0.16.0" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-errors = { path = "../nu-errors", version = "0.16.0" } +nu-cli = { path = "../nu-cli", version = "0.16.0" } crossterm = "0.17.5" syntect = { version = "4.2", default-features = false, features = ["default-fancy"]} @@ -24,4 +24,4 @@ bat = "0.15.4" term_size = "0.3.2" [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/crates/nu_plugin_tree/Cargo.toml b/crates/nu_plugin_tree/Cargo.toml index 48be701ed8..f26d5b75a3 100644 --- a/crates/nu_plugin_tree/Cargo.toml +++ b/crates/nu_plugin_tree/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_tree" -version = "0.15.1" +version = "0.16.0" authors = ["The Nu Project Contributors"] edition = "2018" description = "Tree viewer plugin for Nushell" @@ -10,12 +10,12 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.15.1" } -nu-protocol = { path = "../nu-protocol", version = "0.15.1" } -nu-source = { path = "../nu-source", version = "0.15.1" } -nu-errors = { path = "../nu-errors", version = "0.15.1" } +nu-plugin = { path = "../nu-plugin", version = "0.16.0" } +nu-protocol = { path = "../nu-protocol", version = "0.16.0" } +nu-source = { path = "../nu-source", version = "0.16.0" } +nu-errors = { path = "../nu-errors", version = "0.16.0" } ptree = {version = "0.2" } derive-new = "0.5.8" [build-dependencies] -nu-build = { version = "0.15.1", path = "../nu-build" } +nu-build = { version = "0.16.0", path = "../nu-build" } diff --git a/docs/commands/to-toml.md b/docs/commands/to-toml.md index c391f5a1bb..92126e70c4 100644 --- a/docs/commands/to-toml.md +++ b/docs/commands/to-toml.md @@ -88,7 +88,7 @@ version = "0.4.6" [dependencies.cursive] default-features = false features = ["pancurses-backend"] -version = "0.15.1" +version = "0.16.0" [dependencies.futures-preview] features = ["compat", "io-compat"]