From 7c6e82c9908b5107bfe0b7c7e184b2088400db20 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Tue, 26 Nov 2019 20:59:43 +1300 Subject: [PATCH 1/2] Bump the release version --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6241e14498..3b48845ae9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1660,7 +1660,7 @@ dependencies = [ [[package]] name = "nu" -version = "0.5.1" +version = "0.6.0" dependencies = [ "ansi_term 0.12.1 (registry+https://github.com/rust-lang/crates.io-index)", "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index e81c4fdc40..2e66a00921 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nu" -version = "0.5.1" +version = "0.6.0" authors = ["Yehuda Katz ", "Jonathan Turner ", "Andrés N. Robalino "] description = "A shell for the GitHub era" license = "MIT" From c68d236fd737305ce4f28c9af5411ba09c4e57d3 Mon Sep 17 00:00:00 2001 From: Jonathan Turner Date: Tue, 26 Nov 2019 21:00:34 +1300 Subject: [PATCH 2/2] Update README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1e804d22c1..8677bb19e2 100644 --- a/README.md +++ b/README.md @@ -173,7 +173,7 @@ We can pipeline this into a command that gets the contents of one of the columns ━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━━━━━━━━━━━━┯━━━━━━━━━┯━━━━━━━━━┯━━━━━━┯━━━━━━━━━ authors │ description │ edition │ license │ name │ version ─────────────────┼────────────────────────────┼─────────┼─────────┼──────┼───────── - [table: 3 rows] │ A shell for the GitHub era │ 2018 │ MIT │ nu │ 0.5.0 + [table: 3 rows] │ A shell for the GitHub era │ 2018 │ MIT │ nu │ 0.6.0 ━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━━━━━━━━━━━━┷━━━━━━━━━┷━━━━━━━━━┷━━━━━━┷━━━━━━━━━ ``` @@ -181,7 +181,7 @@ Finally, we can use commands outside of Nu once we have the data we want: ``` /home/jonathan/Source/nushell(master)> open Cargo.toml | get package.version | echo $it -0.5.0 +0.6.0 ``` Here we use the variable `$it` to refer to the value being piped to the external command.