Skip to content

Commit

Permalink
Bump to 0.14 (nushell#1766)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Turner committed May 12, 2020
1 parent b0aa142 commit b2eecfb
Show file tree
Hide file tree
Showing 24 changed files with 158 additions and 158 deletions.
42 changes: 21 additions & 21 deletions Cargo.lock

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

42 changes: 21 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nu"
version = "0.13.1"
version = "0.14.0"
authors = ["The Nu Project Contributors"]
description = "A new type of shell"
license = "MIT"
Expand All @@ -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.13.0", path = "./crates/nu-cli" }
nu-source = { version = "0.13.0", path = "./crates/nu-source" }
nu-plugin = { version = "0.13.0", path = "./crates/nu-plugin" }
nu-protocol = { version = "0.13.0", path = "./crates/nu-protocol" }
nu-errors = { version = "0.13.0", path = "./crates/nu-errors" }
nu-parser = { version = "0.13.0", path = "./crates/nu-parser" }
nu-value-ext = { version = "0.13.0", path = "./crates/nu-value-ext" }
nu_plugin_average = { version = "0.13.0", path = "./crates/nu_plugin_average", optional=true }
nu_plugin_binaryview = { version = "0.13.0", path = "./crates/nu_plugin_binaryview", optional=true }
nu_plugin_fetch = { version = "0.13.0", path = "./crates/nu_plugin_fetch", optional=true }
nu_plugin_inc = { version = "0.13.0", path = "./crates/nu_plugin_inc", optional=true }
nu_plugin_match = { version = "0.13.0", path = "./crates/nu_plugin_match", optional=true }
nu_plugin_post = { version = "0.13.0", path = "./crates/nu_plugin_post", optional=true }
nu_plugin_ps = { version = "0.13.0", path = "./crates/nu_plugin_ps", optional=true }
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_plugin_start = { version = "0.1.0", path = "./crates/nu_plugin_start", optional=true }
nu_plugin_str = { version = "0.13.0", path = "./crates/nu_plugin_str", optional=true }
nu_plugin_sys = { version = "0.13.0", path = "./crates/nu_plugin_sys", optional=true }
nu_plugin_textview = { version = "0.13.0", path = "./crates/nu_plugin_textview", optional=true }
nu_plugin_tree = { version = "0.13.0", path = "./crates/nu_plugin_tree", 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 }

crossterm = { version = "0.17.2", optional = true }
semver = { version = "0.9.0", optional = true }
Expand All @@ -51,12 +51,12 @@ log = "0.4.8"
pretty_env_logger = "0.4.0"

[dev-dependencies]
nu-test-support = { version = "0.13.0", path = "./crates/nu-test-support" }
nu-test-support = { version = "0.14.0", path = "./crates/nu-test-support" }

[build-dependencies]
toml = "0.5.6"
serde = { version = "1.0.106", features = ["derive"] }
nu-build = { version = "0.13.0", path = "./crates/nu-build" }
nu-build = { version = "0.14.0", path = "./crates/nu-build" }

[features]
# Test executables
Expand Down
2 changes: 1 addition & 1 deletion crates/nu-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nu-build"
version = "0.13.0"
version = "0.14.0"
authors = ["The Nu Project Contributors"]
edition = "2018"
description = "Core build system for nushell"
Expand Down
18 changes: 9 additions & 9 deletions crates/nu-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nu-cli"
version = "0.13.1"
version = "0.14.0"
authors = ["The Nu Project Contributors"]
description = "CLI for nushell"
edition = "2018"
Expand All @@ -10,13 +10,13 @@ license = "MIT"
doctest = false

[dependencies]
nu-source = { version = "0.13.0", path = "../nu-source" }
nu-plugin = { version = "0.13.0", path = "../nu-plugin" }
nu-protocol = { version = "0.13.0", path = "../nu-protocol" }
nu-errors = { version = "0.13.0", path = "../nu-errors" }
nu-parser = { version = "0.13.0", path = "../nu-parser" }
nu-value-ext = { version = "0.13.0", path = "../nu-value-ext" }
nu-test-support = { version = "0.13.0", path = "../nu-test-support" }
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" }


ansi_term = "0.12.1"
Expand Down Expand Up @@ -99,7 +99,7 @@ version = "0.22.0"
features = ["bundled", "blob"]

[build-dependencies]
nu-build = { version = "0.13.0", path = "../nu-build" }
nu-build = { version = "0.14.0", path = "../nu-build" }

[dev-dependencies]
quickcheck = "0.9"
Expand Down
6 changes: 3 additions & 3 deletions crates/nu-errors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nu-errors"
version = "0.13.0"
version = "0.14.0"
authors = ["The Nu Project Contributors"]
edition = "2018"
description = "Core error subsystem for Nushell"
Expand All @@ -10,7 +10,7 @@ license = "MIT"
doctest = false

[dependencies]
nu-source = { path = "../nu-source", version = "0.13.0" }
nu-source = { path = "../nu-source", version = "0.14.0" }

ansi_term = "0.12.1"
bigdecimal = { version = "0.1.0", features = ["serde"] }
Expand All @@ -28,4 +28,4 @@ serde_json = "1.0.51"
glob = "0.3.0"

[build-dependencies]
nu-build = { version = "0.13.0", path = "../nu-build" }
nu-build = { version = "0.14.0", path = "../nu-build" }
8 changes: 4 additions & 4 deletions crates/nu-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nu-parser"
version = "0.13.0"
version = "0.14.0"
authors = ["The Nu Project Contributors"]
edition = "2018"
description = "Nushell parser"
Expand All @@ -20,9 +20,9 @@ language-reporting = "0.4.0"
log = "0.4.8"
shellexpand = "2.0.0"

nu-source = { version = "0.13.0", path = "../nu-source" }
nu-protocol = { version = "0.13.0", path = "../nu-protocol" }
nu-errors = { version = "0.13.0", path = "../nu-errors" }
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" }

[features]
stable = []
Expand Down
12 changes: 6 additions & 6 deletions crates/nu-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nu-plugin"
version = "0.13.0"
version = "0.14.0"
authors = ["The Nu Project Contributors"]
edition = "2018"
description = "Nushell Plugin"
Expand All @@ -10,15 +10,15 @@ license = "MIT"
doctest = false

[dependencies]
nu-protocol = { path = "../nu-protocol", version = "0.13.0" }
nu-source = { path = "../nu-source", version = "0.13.0" }
nu-errors = { path = "../nu-errors", version = "0.13.0" }
nu-value-ext = { path = "../nu-value-ext", version = "0.13.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" }

indexmap = { version = "1.3.2", features = ["serde-1"] }
serde = { version = "1.0.106", features = ["derive"] }
num-bigint = { version = "0.2.6", features = ["serde"] }
serde_json = "1.0.51"

[build-dependencies]
nu-build = { version = "0.13.0", path = "../nu-build" }
nu-build = { version = "0.14.0", path = "../nu-build" }
8 changes: 4 additions & 4 deletions crates/nu-protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nu-protocol"
version = "0.13.0"
version = "0.14.0"
authors = ["The Nu Project Contributors"]
edition = "2018"
description = "Core values and protocols for Nushell"
Expand All @@ -10,8 +10,8 @@ license = "MIT"
doctest = false

[dependencies]
nu-source = { path = "../nu-source", version = "0.13.0" }
nu-errors = { path = "../nu-errors", version = "0.13.0" }
nu-source = { path = "../nu-source", version = "0.14.0" }
nu-errors = { path = "../nu-errors", version = "0.14.0" }

serde = { version = "1.0.106", features = ["derive"] }
indexmap = { version = "1.3.2", features = ["serde-1"] }
Expand All @@ -36,4 +36,4 @@ toml = "0.5.6"
serde_json = "1.0.51"

[build-dependencies]
nu-build = { version = "0.13.0", path = "../nu-build" }
nu-build = { version = "0.14.0", path = "../nu-build" }
Loading

0 comments on commit b2eecfb

Please sign in to comment.