Bump to 0.30 (#3333)

* Bump to 0.30

* fix test
This commit is contained in:
JT
2021-04-20 18:34:10 +12:00
committed by GitHub
parent 61768aa2fd
commit 0fc9b6cfa2
38 changed files with 266 additions and 266 deletions

View File

@@ -72,15 +72,15 @@ fn picks_up_env_keys_when_entering_trusted_directory_indirectly() {
sandbox.with_files(vec![FileWithContent(
".nu-env",
r#"[env]
nu-version = "0.29.2" "#,
nu-ver = "0.30.0" "#,
)]);
let expected = "0.29.2";
let expected = "0.30.0";
let actual = Trusted::in_path(&dirs, || {
nu!(cwd: dirs.test().join("crates"), r#"
cd ../../autoenv_test_3
echo $nu.env.nu-version
echo $nu.env.nu-ver
"#)
});