From d81d17ba0a2f2e4a901e215a569eae3100ecbab5 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Sun, 28 Mar 2021 16:02:56 -0700 Subject: [PATCH] Release v0.8.6 (#776) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Bump version: 0.8.5 → 0.8.6 - Update dependencies - Update changelog - Update man page - Update config test --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.lock | 38 ++++++++++++-------------------------- Cargo.toml | 2 +- man/just.1 | 4 ++-- src/config.rs | 2 +- 5 files changed, 33 insertions(+), 30 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d9af9a..fd7d721 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,23 @@ Changelog ========= +[v0.8.6] - 2020-3-28 +-------------------- + +### Added +- Add just_executable() function (#775) +- Prefix parameters with `$` to export to environment (#773) +- Add `set export` to export all variables as environment variables (#767) + +### Changed +- Suppress all output to stderr when `--quiet` (#771) + +### Misc +- Improve chooser invocation error message (#772) +- De-emphasize cmd.exe in readme (#768) +- Fix warnings (#770) + + [v0.8.5] - 2020-3-24 -------------------- diff --git a/Cargo.lock b/Cargo.lock index 45f0360..60bfb72 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -126,6 +126,12 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bbbaaaf38131deb9ca518a274a45bfdb8771f139517b073b16c2d3d32ae5037b" +[[package]] +name = "either" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" + [[package]] name = "env_logger" version = "0.8.3" @@ -182,7 +188,7 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "just" -version = "0.8.5" +version = "0.8.6" dependencies = [ "ansi_term 0.12.1", "atty", @@ -415,9 +421,9 @@ dependencies = [ [[package]] name = "syn" -version = "1.0.64" +version = "1.0.65" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fd9d1e9976102a03c542daa2eff1b43f9d72306342f3f8b3ed5fb8908195d6f" +checksum = "f3a1d708c221c5a612956ef9f75b37e454e88d1f7b899fbd3a18d4252012d663" dependencies = [ "proc-macro2", "quote", @@ -469,26 +475,6 @@ dependencies = [ "unicode-width", ] -[[package]] -name = "thiserror" -version = "1.0.24" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0f4a65597094d4483ddaed134f409b2cb7c1beccf25201a9f73c719254fa98e" -dependencies = [ - "thiserror-impl", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.24" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7765189610d8241a44529806d6fd1f2e0a08734313a35d5b3a556f92b381f3c0" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "unicode-segmentation" version = "1.7.1" @@ -521,12 +507,12 @@ checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" [[package]] name = "which" -version = "4.0.2" +version = "4.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87c14ef7e1b8b8ecfc75d5eca37949410046e66f15d185c01d70824f1f8111ef" +checksum = "b55551e42cbdf2ce2bedd2203d0cc08dba002c27510f86dab6d0ce304cba3dfe" dependencies = [ + "either", "libc", - "thiserror", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 278c5a6..3131012 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "just" -version = "0.8.5" +version = "0.8.6" description = "🤖 Just a command runner" authors = ["Casey Rodarmor "] license = "CC0-1.0" diff --git a/man/just.1 b/man/just.1 index f84b11b..dc17b96 100644 --- a/man/just.1 +++ b/man/just.1 @@ -1,9 +1,9 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.15. -.TH JUST "1" "March 2021" "just 0.8.5" "Just Manual" +.TH JUST "1" "March 2021" "just 0.8.6" "Just Manual" .SH NAME just \- save and run commands .SH DESCRIPTION -just 0.8.5 +just 0.8.6 \- Please see https://github.com/casey/just for more information. .SS "USAGE:" .IP diff --git a/src/config.rs b/src/config.rs index 1eca775..212a3f0 100644 --- a/src/config.rs +++ b/src/config.rs @@ -860,7 +860,7 @@ mod tests { // have proper tests for all the flags, but this will do for now. #[test] fn help() { - const EXPECTED_HELP: &str = "just v0.8.5 + const EXPECTED_HELP: &str = "just v0.8.6 Casey Rodarmor 🤖 Just a command runner \ - https://github.com/casey/just