Bump to 0.27.2 (#3109)

* Bump to 0.27.2

* Fix clippy and test
This commit is contained in:
Jonathan Turner
2021-02-26 17:55:25 +13:00
committed by GitHub
parent 19d5f782cc
commit aa6c6120f6
40 changed files with 266 additions and 266 deletions

View File

@ -4,18 +4,18 @@ description = "Core commands for nushell"
edition = "2018"
license = "MIT"
name = "nu-engine"
version = "0.27.1"
version = "0.27.2"
[dependencies]
nu-data = { version = "0.27.1", path = "../nu-data" }
nu-errors = { version = "0.27.1", path = "../nu-errors" }
nu-parser = { version = "0.27.1", path = "../nu-parser" }
nu-plugin = { version = "0.27.1", path = "../nu-plugin" }
nu-protocol = { version = "0.27.1", path = "../nu-protocol" }
nu-source = { version = "0.27.1", path = "../nu-source" }
nu-stream = { version = "0.27.1", path = "../nu-stream" }
nu-value-ext = { version = "0.27.1", path = "../nu-value-ext" }
nu-ansi-term = { version = "0.27.1", path = "../nu-ansi-term" }
nu-data = { version = "0.27.2", path = "../nu-data" }
nu-errors = { version = "0.27.2", path = "../nu-errors" }
nu-parser = { version = "0.27.2", path = "../nu-parser" }
nu-plugin = { version = "0.27.2", path = "../nu-plugin" }
nu-protocol = { version = "0.27.2", path = "../nu-protocol" }
nu-source = { version = "0.27.2", path = "../nu-source" }
nu-stream = { version = "0.27.2", path = "../nu-stream" }
nu-value-ext = { version = "0.27.2", path = "../nu-value-ext" }
nu-ansi-term = { version = "0.27.2", path = "../nu-ansi-term" }
async-recursion = "0.3.2"
async-trait = "0.1.42"
@ -47,7 +47,7 @@ umask = "1.0.0"
users = "0.11.0"
[dev-dependencies]
nu-test-support = { version = "0.27.1", path = "../nu-test-support" }
nu-test-support = { version = "0.27.2", path = "../nu-test-support" }
[features]
rustyline-support = []

View File

@ -102,7 +102,7 @@ mod tests {
assert!(!absolutize(relative_to, path)
.to_str()
.unwrap()
.contains("."));
.contains('.'));
}
#[test]