diff --git a/Cargo.lock b/Cargo.lock index 2a6eea90e1..5619c7fd59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2069,7 +2069,7 @@ dependencies = [ [[package]] name = "nu" -version = "0.14.0" +version = "0.14.1" dependencies = [ "clap", "crossterm", @@ -2108,7 +2108,7 @@ dependencies = [ [[package]] name = "nu-build" -version = "0.14.0" +version = "0.14.1" dependencies = [ "lazy_static 1.4.0", "serde 1.0.106", @@ -2118,7 +2118,7 @@ dependencies = [ [[package]] name = "nu-cli" -version = "0.14.0" +version = "0.14.1" dependencies = [ "ansi_term 0.12.1", "app_dirs", @@ -2206,7 +2206,7 @@ dependencies = [ [[package]] name = "nu-errors" -version = "0.14.0" +version = "0.14.1" dependencies = [ "ansi_term 0.12.1", "bigdecimal", @@ -2226,7 +2226,7 @@ dependencies = [ [[package]] name = "nu-parser" -version = "0.14.0" +version = "0.14.1" dependencies = [ "bigdecimal", "derive-new", @@ -2245,7 +2245,7 @@ dependencies = [ [[package]] name = "nu-plugin" -version = "0.14.0" +version = "0.14.1" dependencies = [ "indexmap", "nu-build", @@ -2260,7 +2260,7 @@ dependencies = [ [[package]] name = "nu-protocol" -version = "0.14.0" +version = "0.14.1" dependencies = [ "ansi_term 0.12.1", "bigdecimal", @@ -2288,7 +2288,7 @@ dependencies = [ [[package]] name = "nu-source" -version = "0.14.0" +version = "0.14.1" dependencies = [ "derive-new", "getset", @@ -2301,7 +2301,7 @@ dependencies = [ [[package]] name = "nu-test-support" -version = "0.14.0" +version = "0.14.1" dependencies = [ "app_dirs", "dunce", @@ -2317,7 +2317,7 @@ dependencies = [ [[package]] name = "nu-value-ext" -version = "0.14.0" +version = "0.14.1" dependencies = [ "indexmap", "itertools 0.9.0", @@ -2331,7 +2331,7 @@ dependencies = [ [[package]] name = "nu_plugin_average" -version = "0.14.0" +version = "0.14.1" dependencies = [ "nu-build", "nu-errors", @@ -2342,7 +2342,7 @@ dependencies = [ [[package]] name = "nu_plugin_binaryview" -version = "0.14.0" +version = "0.14.1" dependencies = [ "ansi_term 0.12.1", "crossterm", @@ -2359,7 +2359,7 @@ dependencies = [ [[package]] name = "nu_plugin_fetch" -version = "0.14.0" +version = "0.14.1" dependencies = [ "futures 0.3.4", "nu-build", @@ -2373,7 +2373,7 @@ dependencies = [ [[package]] name = "nu_plugin_inc" -version = "0.14.0" +version = "0.14.1" dependencies = [ "nu-build", "nu-errors", @@ -2386,7 +2386,7 @@ dependencies = [ [[package]] name = "nu_plugin_match" -version = "0.14.0" +version = "0.14.1" dependencies = [ "futures 0.3.4", "nu-build", @@ -2399,7 +2399,7 @@ dependencies = [ [[package]] name = "nu_plugin_post" -version = "0.14.0" +version = "0.14.1" dependencies = [ "base64 0.12.0", "futures 0.3.4", @@ -2416,7 +2416,7 @@ dependencies = [ [[package]] name = "nu_plugin_ps" -version = "0.14.0" +version = "0.14.1" dependencies = [ "futures 0.3.4", "futures-timer 3.0.2", @@ -2443,7 +2443,7 @@ dependencies = [ [[package]] name = "nu_plugin_str" -version = "0.14.0" +version = "0.14.1" dependencies = [ "chrono", "nu-build", @@ -2458,7 +2458,7 @@ dependencies = [ [[package]] name = "nu_plugin_sys" -version = "0.14.0" +version = "0.14.1" dependencies = [ "battery", "futures 0.3.4", @@ -2473,7 +2473,7 @@ dependencies = [ [[package]] name = "nu_plugin_textview" -version = "0.14.0" +version = "0.14.1" dependencies = [ "ansi_term 0.12.1", "crossterm", @@ -2488,7 +2488,7 @@ dependencies = [ [[package]] name = "nu_plugin_tree" -version = "0.14.0" +version = "0.14.1" dependencies = [ "derive-new", "nu-build", diff --git a/Cargo.toml b/Cargo.toml index 8eb946c430..4ed49d2f64 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu" -version = "0.14.0" +version = "0.14.1" authors = ["The Nu Project Contributors"] description = "A new type of shell" license = "MIT" @@ -18,25 +18,25 @@ members = ["crates/*/"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nu-cli = { version = "0.14.0", path = "./crates/nu-cli" } -nu-source = { version = "0.14.0", path = "./crates/nu-source" } -nu-plugin = { version = "0.14.0", path = "./crates/nu-plugin" } -nu-protocol = { version = "0.14.0", path = "./crates/nu-protocol" } -nu-errors = { version = "0.14.0", path = "./crates/nu-errors" } -nu-parser = { version = "0.14.0", path = "./crates/nu-parser" } -nu-value-ext = { version = "0.14.0", path = "./crates/nu-value-ext" } -nu_plugin_average = { version = "0.14.0", path = "./crates/nu_plugin_average", optional=true } -nu_plugin_binaryview = { version = "0.14.0", path = "./crates/nu_plugin_binaryview", optional=true } -nu_plugin_fetch = { version = "0.14.0", path = "./crates/nu_plugin_fetch", optional=true } -nu_plugin_inc = { version = "0.14.0", path = "./crates/nu_plugin_inc", optional=true } -nu_plugin_match = { version = "0.14.0", path = "./crates/nu_plugin_match", optional=true } -nu_plugin_post = { version = "0.14.0", path = "./crates/nu_plugin_post", optional=true } -nu_plugin_ps = { version = "0.14.0", path = "./crates/nu_plugin_ps", optional=true } +nu-cli = { version = "0.14.1", path = "./crates/nu-cli" } +nu-source = { version = "0.14.1", path = "./crates/nu-source" } +nu-plugin = { version = "0.14.1", path = "./crates/nu-plugin" } +nu-protocol = { version = "0.14.1", path = "./crates/nu-protocol" } +nu-errors = { version = "0.14.1", path = "./crates/nu-errors" } +nu-parser = { version = "0.14.1", path = "./crates/nu-parser" } +nu-value-ext = { version = "0.14.1", path = "./crates/nu-value-ext" } +nu_plugin_average = { version = "0.14.1", path = "./crates/nu_plugin_average", optional=true } +nu_plugin_binaryview = { version = "0.14.1", path = "./crates/nu_plugin_binaryview", optional=true } +nu_plugin_fetch = { version = "0.14.1", path = "./crates/nu_plugin_fetch", optional=true } +nu_plugin_inc = { version = "0.14.1", path = "./crates/nu_plugin_inc", optional=true } +nu_plugin_match = { version = "0.14.1", path = "./crates/nu_plugin_match", optional=true } +nu_plugin_post = { version = "0.14.1", path = "./crates/nu_plugin_post", optional=true } +nu_plugin_ps = { version = "0.14.1", path = "./crates/nu_plugin_ps", optional=true } nu_plugin_start = { version = "0.1.0", path = "./crates/nu_plugin_start", optional=true } -nu_plugin_str = { version = "0.14.0", path = "./crates/nu_plugin_str", optional=true } -nu_plugin_sys = { version = "0.14.0", path = "./crates/nu_plugin_sys", optional=true } -nu_plugin_textview = { version = "0.14.0", path = "./crates/nu_plugin_textview", optional=true } -nu_plugin_tree = { version = "0.14.0", path = "./crates/nu_plugin_tree", optional=true } +nu_plugin_str = { version = "0.14.1", path = "./crates/nu_plugin_str", optional=true } +nu_plugin_sys = { version = "0.14.1", path = "./crates/nu_plugin_sys", optional=true } +nu_plugin_textview = { version = "0.14.1", path = "./crates/nu_plugin_textview", optional=true } +nu_plugin_tree = { version = "0.14.1", path = "./crates/nu_plugin_tree", optional=true } crossterm = { version = "0.17.2", optional = true } semver = { version = "0.9.0", optional = true } @@ -51,12 +51,12 @@ log = "0.4.8" pretty_env_logger = "0.4.0" [dev-dependencies] -nu-test-support = { version = "0.14.0", path = "./crates/nu-test-support" } +nu-test-support = { version = "0.14.1", path = "./crates/nu-test-support" } [build-dependencies] toml = "0.5.6" serde = { version = "1.0.106", features = ["derive"] } -nu-build = { version = "0.14.0", path = "./crates/nu-build" } +nu-build = { version = "0.14.1", path = "./crates/nu-build" } [features] # Test executables diff --git a/crates/nu-build/Cargo.toml b/crates/nu-build/Cargo.toml index 5b459de43e..d962b132cc 100644 --- a/crates/nu-build/Cargo.toml +++ b/crates/nu-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-build" -version = "0.14.0" +version = "0.14.1" 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 ff81d27d30..692f059165 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-cli" -version = "0.14.0" +version = "0.14.1" authors = ["The Nu Project Contributors"] description = "CLI for nushell" edition = "2018" @@ -10,13 +10,13 @@ license = "MIT" doctest = false [dependencies] -nu-source = { version = "0.14.0", path = "../nu-source" } -nu-plugin = { version = "0.14.0", path = "../nu-plugin" } -nu-protocol = { version = "0.14.0", path = "../nu-protocol" } -nu-errors = { version = "0.14.0", path = "../nu-errors" } -nu-parser = { version = "0.14.0", path = "../nu-parser" } -nu-value-ext = { version = "0.14.0", path = "../nu-value-ext" } -nu-test-support = { version = "0.14.0", path = "../nu-test-support" } +nu-source = { version = "0.14.1", path = "../nu-source" } +nu-plugin = { version = "0.14.1", path = "../nu-plugin" } +nu-protocol = { version = "0.14.1", path = "../nu-protocol" } +nu-errors = { version = "0.14.1", path = "../nu-errors" } +nu-parser = { version = "0.14.1", path = "../nu-parser" } +nu-value-ext = { version = "0.14.1", path = "../nu-value-ext" } +nu-test-support = { version = "0.14.1", path = "../nu-test-support" } ansi_term = "0.12.1" @@ -99,7 +99,7 @@ version = "0.22.0" features = ["bundled", "blob"] [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } [dev-dependencies] quickcheck = "0.9" diff --git a/crates/nu-errors/Cargo.toml b/crates/nu-errors/Cargo.toml index bb8db55fa9..b1f886c041 100644 --- a/crates/nu-errors/Cargo.toml +++ b/crates/nu-errors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-errors" -version = "0.14.0" +version = "0.14.1" 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.14.0" } +nu-source = { path = "../nu-source", version = "0.14.1" } ansi_term = "0.12.1" bigdecimal = { version = "0.1.0", features = ["serde"] } @@ -28,4 +28,4 @@ serde_json = "1.0.51" glob = "0.3.0" [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu-parser/Cargo.toml b/crates/nu-parser/Cargo.toml index 645b54f39c..1ba0c377a1 100644 --- a/crates/nu-parser/Cargo.toml +++ b/crates/nu-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-parser" -version = "0.14.0" +version = "0.14.1" authors = ["The Nu Project Contributors"] edition = "2018" description = "Nushell parser" @@ -20,9 +20,9 @@ language-reporting = "0.4.0" log = "0.4.8" shellexpand = "2.0.0" -nu-source = { version = "0.14.0", path = "../nu-source" } -nu-protocol = { version = "0.14.0", path = "../nu-protocol" } -nu-errors = { version = "0.14.0", path = "../nu-errors" } +nu-source = { version = "0.14.1", path = "../nu-source" } +nu-protocol = { version = "0.14.1", path = "../nu-protocol" } +nu-errors = { version = "0.14.1", path = "../nu-errors" } [features] stable = [] diff --git a/crates/nu-plugin/Cargo.toml b/crates/nu-plugin/Cargo.toml index ffc83b829d..cc06e63602 100644 --- a/crates/nu-plugin/Cargo.toml +++ b/crates/nu-plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-plugin" -version = "0.14.0" +version = "0.14.1" 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.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } -nu-value-ext = { path = "../nu-value-ext", version = "0.14.0" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } +nu-value-ext = { path = "../nu-value-ext", version = "0.14.1" } indexmap = { version = "1.3.2", features = ["serde-1"] } serde = { version = "1.0.106", features = ["derive"] } @@ -21,4 +21,4 @@ num-bigint = { version = "0.2.6", features = ["serde"] } serde_json = "1.0.51" [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu-protocol/Cargo.toml b/crates/nu-protocol/Cargo.toml index e738749163..39f0401d89 100644 --- a/crates/nu-protocol/Cargo.toml +++ b/crates/nu-protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-protocol" -version = "0.14.0" +version = "0.14.1" 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.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } serde = { version = "1.0.106", features = ["derive"] } indexmap = { version = "1.3.2", features = ["serde-1"] } @@ -36,4 +36,4 @@ toml = "0.5.6" serde_json = "1.0.51" [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu-source/Cargo.toml b/crates/nu-source/Cargo.toml index 2c4cadee13..039a96d923 100644 --- a/crates/nu-source/Cargo.toml +++ b/crates/nu-source/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu-source" -version = "0.14.0" +version = "0.14.1" 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.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu-test-support/Cargo.toml b/crates/nu-test-support/Cargo.toml index 1d1cd2cdb2..8740d64bb8 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.14.0" +version = "0.14.1" 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.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } +nu-parser = { path = "../nu-parser", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } app_dirs = "1.2.1" dunce = "1.0.0" @@ -22,4 +22,4 @@ tempfile = "3.1.0" indexmap = { version = "1.3.2", features = ["serde-1"] } [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu-value-ext/Cargo.toml b/crates/nu-value-ext/Cargo.toml index 31bad92d56..429f6772d9 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.14.0" +version = "0.14.1" 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.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } -nu-parser = { path = "../nu-parser", version = "0.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } +nu-parser = { path = "../nu-parser", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } num-traits = "0.2.11" itertools = "0.9.0" indexmap = { version = "1.3.2", features = ["serde-1"] } [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu_plugin_average/Cargo.toml b/crates/nu_plugin_average/Cargo.toml index 2e4806ad75..30429cec61 100644 --- a/crates/nu_plugin_average/Cargo.toml +++ b/crates/nu_plugin_average/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_average" -version = "0.14.0" +version = "0.14.1" authors = ["The Nu Project Contributors"] edition = "2018" description = "An average value plugin for Nushell" @@ -10,10 +10,10 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } +nu-plugin = { path = "../nu-plugin", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu_plugin_binaryview/Cargo.toml b/crates/nu_plugin_binaryview/Cargo.toml index 09f1afc9ed..9770cd9ce4 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.14.0" +version = "0.14.1" 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.2" } -nu-plugin = { path = "../nu-plugin", version = "0.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } +nu-plugin = { path = "../nu-plugin", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } 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.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu_plugin_fetch/Cargo.toml b/crates/nu_plugin_fetch/Cargo.toml index 8d23363995..0d2476329a 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.14.0" +version = "0.14.1" authors = ["The Nu Project Contributors"] edition = "2018" description = "A URL fetch plugin for Nushell" @@ -10,13 +10,13 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } +nu-plugin = { path = "../nu-plugin", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } futures = { version = "0.3", features = ["compat", "io-compat"] } surf = "1.0.3" url = "2.1.1" [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu_plugin_inc/Cargo.toml b/crates/nu_plugin_inc/Cargo.toml index fefc83ac1d..ff172757e0 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.14.0" +version = "0.14.1" 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.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } -nu-value-ext = { path = "../nu-value-ext", version = "0.14.0" } +nu-plugin = { path = "../nu-plugin", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } +nu-value-ext = { path = "../nu-value-ext", version = "0.14.1" } semver = "0.9.0" [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu_plugin_match/Cargo.toml b/crates/nu_plugin_match/Cargo.toml index c0a5831846..91de975553 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.14.0" +version = "0.14.1" 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.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } +nu-plugin = { path = "../nu-plugin", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } futures = { version = "0.3", features = ["compat", "io-compat"] } regex = "1" [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu_plugin_post/Cargo.toml b/crates/nu_plugin_post/Cargo.toml index 96de6570a2..69b14ab885 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.14.0" +version = "0.14.1" 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.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } +nu-plugin = { path = "../nu-plugin", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } futures = { version = "0.3", features = ["compat", "io-compat"] } surf = "1.0.3" url = "2.1.1" @@ -22,4 +22,4 @@ base64 = "0.12.0" num-traits = "0.2.11" [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu_plugin_ps/Cargo.toml b/crates/nu_plugin_ps/Cargo.toml index 8b92e736f6..c52232e9a0 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.14.0" +version = "0.14.1" 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.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } +nu-plugin = { path = "../nu-plugin", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } futures = { version = "0.3", features = ["compat", "io-compat"] } futures-timer = "3.0.2" @@ -24,4 +24,4 @@ default-features = false features = ["process", "runtime-polyfill"] [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu_plugin_start/Cargo.toml b/crates/nu_plugin_start/Cargo.toml index 298a726ee1..09d1c9c95f 100644 --- a/crates/nu_plugin_start/Cargo.toml +++ b/crates/nu_plugin_start/Cargo.toml @@ -10,14 +10,14 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } +nu-plugin = { path = "../nu-plugin", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } url = "2.1.1" open = "1.4.0" [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } -nu-errors = { version = "0.14.0", path = "../nu-errors" } -nu-source = { version = "0.14.0", path = "../nu-source" } \ No newline at end of file +nu-build = { version = "0.14.1", path = "../nu-build" } +nu-errors = { version = "0.14.1", path = "../nu-errors" } +nu-source = { version = "0.14.1", path = "../nu-source" } \ No newline at end of file diff --git a/crates/nu_plugin_str/Cargo.toml b/crates/nu_plugin_str/Cargo.toml index 6529c6979d..306d19688e 100644 --- a/crates/nu_plugin_str/Cargo.toml +++ b/crates/nu_plugin_str/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu_plugin_str" -version = "0.14.0" +version = "0.14.1" authors = ["The Nu Project Contributors"] edition = "2018" description = "A string manipulation plugin for Nushell" @@ -10,15 +10,15 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } -nu-value-ext = { path = "../nu-value-ext", version = "0.14.0" } +nu-plugin = { path = "../nu-plugin", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } +nu-value-ext = { path = "../nu-value-ext", version = "0.14.1" } chrono = { version = "0.4.11", features = ["serde"] } regex = "1" num-bigint = "0.2.6" [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu_plugin_sys/Cargo.toml b/crates/nu_plugin_sys/Cargo.toml index 5b0eaefe05..d2591cdd57 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.14.0" +version = "0.14.1" 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.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } +nu-plugin = { path = "../nu-plugin", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } 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", "runtime-polyfill"] [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu_plugin_textview/Cargo.toml b/crates/nu_plugin_textview/Cargo.toml index 75f4200d55..44d6a089cc 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.14.0" +version = "0.14.1" authors = ["The Nu Project Contributors"] edition = "2018" description = "Text viewer plugin for Nushell" @@ -10,10 +10,10 @@ license = "MIT" doctest = false [dependencies] -nu-plugin = { path = "../nu-plugin", version = "0.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } +nu-plugin = { path = "../nu-plugin", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } crossterm = "0.17.2" syntect = { version = "4.1", default-features = false, features = ["default-fancy"]} @@ -21,4 +21,4 @@ ansi_term = "0.12.1" url = "2.1.1" [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/crates/nu_plugin_tree/Cargo.toml b/crates/nu_plugin_tree/Cargo.toml index 372e4fe567..db2669959a 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.14.0" +version = "0.14.1" 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.14.0" } -nu-protocol = { path = "../nu-protocol", version = "0.14.0" } -nu-source = { path = "../nu-source", version = "0.14.0" } -nu-errors = { path = "../nu-errors", version = "0.14.0" } +nu-plugin = { path = "../nu-plugin", version = "0.14.1" } +nu-protocol = { path = "../nu-protocol", version = "0.14.1" } +nu-source = { path = "../nu-source", version = "0.14.1" } +nu-errors = { path = "../nu-errors", version = "0.14.1" } ptree = {version = "0.2" } derive-new = "0.5.8" [build-dependencies] -nu-build = { version = "0.14.0", path = "../nu-build" } +nu-build = { version = "0.14.1", path = "../nu-build" } diff --git a/docs/commands/to-toml.md b/docs/commands/to-toml.md index 6a4343579f..3efa04d44b 100644 --- a/docs/commands/to-toml.md +++ b/docs/commands/to-toml.md @@ -83,7 +83,7 @@ version = "0.4.6" [dependencies.cursive] default-features = false features = ["pancurses-backend"] -version = "0.14.0" +version = "0.14.1" [dependencies.futures-preview] features = ["compat", "io-compat"]