summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCasey Rodarmor <casey@rodarmor.com>2021-03-28 16:02:56 -0700
committerGitHub <noreply@github.com>2021-03-28 16:02:56 -0700
commitd81d17ba0a2f2e4a901e215a569eae3100ecbab5 (patch)
tree28fed00d9eea18a3280e5257b1d9d01f67747c82
parent13e9f406c8eef372135355846a70c8f003f14824 (diff)
Release v0.8.6 (#776)v0.8.6
- Bump version: 0.8.5 → 0.8.6 - Update dependencies - Update changelog - Update man page - Update config test
-rw-r--r--CHANGELOG.md17
-rw-r--r--Cargo.lock38
-rw-r--r--Cargo.toml2
-rw-r--r--man/just.14
-rw-r--r--src/config.rs2
5 files changed, 33 insertions, 30 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9d9af9a2..fd7d721d 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 45f0360e..60bfb725 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -127,6 +127,12 @@ 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"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -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",
@@ -470,26 +476,6 @@ dependencies = [
]
[[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"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -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 278c5a63..31310123 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 <casey@rodarmor.com>"]
license = "CC0-1.0"
diff --git a/man/just.1 b/man/just.1
index f84b11be..dc17b968 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 1eca7750..212a3f09 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 <casey@rodarmor.com>
🤖 Just a command runner \
- https://github.com/casey/just