From c198099c17aba7664842f71038e5db00e5664961 Mon Sep 17 00:00:00 2001 From: Casey Rodarmor Date: Thu, 27 May 2021 18:22:59 -0700 Subject: [PATCH] Release v0.9.4 (#844) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Release v0.9.4 - Bump version: 0.9.3 → 0.9.4 - Update dependencies - Update changelog - Update man page - Update config test --- .github/workflows/build.yaml | 4 ++-- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 18 +++++++++--------- Cargo.toml | 2 +- man/just.1 | 4 ++-- src/config.rs | 2 +- 6 files changed, 27 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 293e87d..036f046 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -17,10 +17,10 @@ jobs: strategy: matrix: target: - - x86_64-unknown-linux-musl + - aarch64-unknown-linux-gnu - x86_64-apple-darwin - x86_64-pc-windows-msvc - - aarch64-unknown-linux-gnu + - x86_64-unknown-linux-musl include: - target: x86_64-unknown-linux-musl os: ubuntu-latest diff --git a/CHANGELOG.md b/CHANGELOG.md index 28b89e3..859ac62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Changelog ========= +[v0.9.4] - 2021-5-27 +-------------------- + +### Misc +- Release `aarch64-unknown-linux-gnu` binaries (#843) +- Add `$` to non-default parameter grammar (#839) +- Add `$` to parameter grammar (#838) +- Fix readme links (#836) +- Add `vim-just` installation instructions to readme (#835) +- Refactor shebang handling (#833) + + [v0.9.3] - 2021-5-16 -------------------- diff --git a/Cargo.lock b/Cargo.lock index 9d5bf5e..88812b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -46,9 +46,9 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" [[package]] name = "cc" -version = "1.0.67" +version = "1.0.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd" +checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787" [[package]] name = "cfg-if" @@ -153,9 +153,9 @@ checksum = "3ebc5a6d89e3c90b84e8f33c8737933dda8f1c106b5415900b38b9d433841478" [[package]] name = "getrandom" -version = "0.2.2" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8" +checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" dependencies = [ "cfg-if", "libc", @@ -188,7 +188,7 @@ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" [[package]] name = "just" -version = "0.9.3" +version = "0.9.4" dependencies = [ "ansi_term 0.12.1", "atty", @@ -220,9 +220,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.94" +version = "0.2.95" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18794a8ad5b29321f790b55d93dfba91e125cb1a9edbd4f8e3150acc771c1a5e" +checksum = "789da6d93f1b866ffe175afc5322a4d76c038605a1c3319bb57b06967ca98a36" [[package]] name = "log" @@ -280,9 +280,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.26" +version = "1.0.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec" +checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038" dependencies = [ "unicode-xid", ] diff --git a/Cargo.toml b/Cargo.toml index 10ddb0d..dbb5e22 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "just" -version = "0.9.3" +version = "0.9.4" description = "🤖 Just a command runner" authors = ["Casey Rodarmor "] license = "CC0-1.0" diff --git a/man/just.1 b/man/just.1 index 70c700d..b1ced3f 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" "May 2021" "just 0.9.3" "Just Manual" +.TH JUST "1" "May 2021" "just 0.9.4" "Just Manual" .SH NAME just \- save and run commands .SH DESCRIPTION -just 0.9.3 +just 0.9.4 \- Please see https://github.com/casey/just for more information. .SS "USAGE:" .IP diff --git a/src/config.rs b/src/config.rs index 67d3089..60ce17b 100644 --- a/src/config.rs +++ b/src/config.rs @@ -900,7 +900,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.9.3 + const EXPECTED_HELP: &str = "just v0.9.4 Casey Rodarmor 🤖 Just a command runner \ - https://github.com/casey/just